PDA

View Full Version : borders in showthread, not wanted!


Winterworks
08-11-2009, 11:58 PM
<a href="http://community.zoovix.com/showthread.php?p=102#post102" target="_blank">http://community.zoovix.com/showthre...?p=102#post102</a>

I added a border in my "Page Background" CSS part. It's in the "Extra CSS Attributes" Under "Page Background", and I put: border:1px solid #373737;

Why is it showing random lines in showthread now? I'd like to keep that border, but get rid of the ugly lines in showthread.

Stagehandspace
08-12-2009, 12:45 AM
This is due to it being referenced under the "page" css

Create a new css attribute something like:

#page_border
{
border:1px solid #373737;
width: 902px;
margin:0 auto;
}

and stick it in the additional css section box at the bottom of your style manager

now find <!-- /logo --> in header template
and add <div id="page_border"><!-- Start: Page border --> after it

now find this in your footer template:
<br /><br /><br />

and before add the closing div:
</div><!-- End: Page border -->

Winterworks
08-12-2009, 12:52 AM
You saved my *** (blanked out by myself). :)

Thank you man!

Stagehandspace
08-12-2009, 01:03 AM
No problem