1
I am using the lucastds02b theme for my website at
http://greenajah.whitetowerdiv.org and it works great. I have one minor problem that I just don't seem to be able to get fixed.
I wanted a new banner, which was slightly longer than the original, but I figured it wouldn't be much of a hassle to change that in the template and CSS. The original logo was 250px wide and 90px high. The new logo is 471px wide and 90px high.
The original code to display this in the CSS was:
#top td.logo {width: 250px; background-color: #CCE0CC; vertical-align: middle; border-top: 1px solid #7FB27F; border-bottom: 1px solid #7FB27F;}
So I changed that to
#top td.logo {width: 471px; background-color: #CCE0CC; vertical-align: middle; border-top: 1px solid #7FB27F; border-bottom: 1px solid #7FB27F;}
I also adapted the height and width in the theme.html (which belongs to the lucastds02b theme) to 471px instead of 250px.
But it still doesn't work!. When I view the index page source I still see
<td class="logo"><a href="http://whitetowerdiv.org/GreenAjah/"><img src="http://whitetowerdiv.org/GreenAjah/themes/lucastds02b/logo.gif" width="250" height="90" alt="" />a>td>
It isn't pulling that height and width from the CSS, nor from the theme.html apparently. What am I overlooking?