Topic: robshouse
The first PunBB powered forum to feature SQLite3 database support!
It's a forum for my makeshift band
EDIT --
Seems like my ISP is having trouble... the site may be slow
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 show off → robshouse
The first PunBB powered forum to feature SQLite3 database support!
It's a forum for my makeshift band
EDIT --
Seems like my ISP is having trouble... the site may be slow
Still having trouble with my ISP, but should clear up soon... (By Sept. 23rd, last I hurd from them... ~.~)
As a side note, I've added music uploads and downloads, integrated right into the forum. This allows people to comment on songs that have been uploaded. Your also able to upload your own music (Please no copyright infringments ).
Along with that, there's a "true unread" status for every post, edit, or reply.
Even youtube or google video BBcode (with the option to disable them in signatures, or in posts; when disabled a link will show up instead of the embeded video).
What design is that which you used? that lets you add comments in the front for the page and then a different link to the forum... that is pretty cool.
Umm it's the PunBB News Mod v1.0 I think... I changed around every mod I installed though
My ISP finally decided to bring my connection speed back to normal... soes if you view the forums now, you'll acctually be able to browse them
I assume you're running this from your home?
One suggestions, change the background color on the Google Ads so they blend in.
Dam you IE users! Dam you IE for being such a pain in the arse! Dam IE to hell!
Hurm... Only way to blend them in is to change the bg color of the entire div to white then... Seems IE ignores the transparent property, or else has issues with inherance...
Then again, it is a good way to encourage users to install firefox, and rid me of these dam IE problems once and for all...
*Hurmughfuls* ok, ok, I'll see about installing IE soes I can get the dam browser to work...
You just need add this to your Google Code:
google_color_bg = "F1F1F1";
If the user changes his style, this won't fix the problem. I'll just force the bg of the ad div's to be white regardless of style. Don't really feel like doing much to clean this up ;p
If you're using the default styles then throw this in your /include/user directory.
728x90_as.php:
<?php
switch ($pun_user['style'])
{
case 'Cobalt':
$bd_color = '565656';
$bg_color = '2A2A2A';
$link_color = '60A0DC';
$text_color = 'D4D4D4';
break;
case 'Mercury':
$bd_color = '565656';
$bg_color = '2A2A2A';
$link_color = 'F6B620';
$text_color = 'D4D4D4';
break;
case 'Radium':
$bd_color = '565656';
$bg_color = '2A2A2A';
$link_color = '60C860';
$text_color = 'D4D4D4';
break;
case 'Sulfur':
$bd_color = 'B84623';
$bg_color = 'F1F1F1';
$link_color = '822100';
$text_color = '333333';
break;
case 'Lithium':
$bd_color = '6C8A3F';
$bg_color = 'FFFFFF';
$link_color = '638137';
$text_color = '333333';
break;
default:
$bd_color = '0066B9';
$bg_color = 'FFFFFF';
$link_color = '005CB1';
$text_color = '333333';
break;
}
?>
<div style="TEXT-ALIGN: center">
<script type="text/javascript">
<!--
google_ad_client = "pub-number";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "<?php echo $bd_color ?>";
google_color_bg = "<?php echo $bg_color ?>";
google_color_link = "<?php echo $link_color ?>";
google_color_url = "<?php echo $link_color ?>";
google_color_text = "<?php echo $text_color ?>";
google_alternate_color = "<?php echo $bg_color ?>";
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>
<br />
Call it from main.tpl like so:
<pun_include "728x90_as.php">
Thanks for letting me not think
I'll put that in later today or tomorrow
EDIT --
All finished. I changed your color coding around a bit though ;p Thanks again.
PunBB Forums → PunBB 1.2 show off → robshouse
Powered by PunBB, supported by Informer Technologies, Inc.