I've got some styles that are working just fine displaying my main banner, which you can see simply going to
http://www.coreplanets.com<br /><br />The blue banner across the top that says COREPLANETS.COM is what I want on every stylesheet.<br /><br />I'm working on various colors of the banner to work with the various stylesheet colors.<br /><br />However, some don't want to display the top banner, or display it inproperly.<br /><br />For instance, I have this stylesheet at
http://www.coreplanets.com/ubbthreads/stylesheets/delpurple.css<br /><br />And the preview on my forums can be seen at
http://www.coreplanets.com/ubbthreads/previewskin.php?skin=delpurple<br /><br />You'll notice its all jacked up. Solid blue across there.<br /><br />My default header is coded as:<br /><br />
<div align="center"><br /> <table width="95%" border="0" cellspacing="0" cellpadding="0"><br /> <tr><br /> <td class="lefthead"></td><br /> <td class="centerhead">&nbsp;</td><br /> <td class="righthead"></td><br /> </tr><br /> <tr><br /> <td colspan="3"> </td><br /> </tr><br /> </table><br /></div>
<br /><br />If you view the html source when viewing the preview style page I link to above, you'll notice that it has properly inserted the above header code.<br /><br />The pertinent section of the stylesheet I referenced above is at the very top of the .css file and looks like this:<br /><br />
// My Custom Stuff<br /><br />.lefthead {<br /> background-image: url(http://www.coreplanets.com/graphics/coolblue_logo.gif);<br /> width: 465px;<br /> height: 110px;<br />}<br /><br />.centerhead {<br /> background-image: url(http://www.coreplanets.com/graphics/coolblue_center.gif);<br /> height: 110px;<br />}<br /><br />.righthead {<br /> background-image: url(http://www.coreplanets.com/graphics/coolblue_right.gif);<br /> width: 105px;<br /> height: 110px;<br />}<br /><br /><br />// End My Custom Stuff<br /><br />As you can see from the preview its not displaying the banner properly, yet, using the exact same code, it displays properly in my default light blue stylesheet.<br /><br />I've looked at the code for several hours now and am at a loss at what is going on. I'm hoping some guru here will see some little thing I've not done that is causing the problem.