PDA

View Full Version : Side Borders


coca-cola-man
10-20-2008, 02:09 AM
I would like to know how to get the two stripes on the outside of the forum, an example of this is on www.habboasis.com/board

Lynne
10-20-2008, 02:17 AM
It's all in the page source.... the whole forum is wrapped in a div tag class main_container. And that class is defined in the css.

.main_container{
width: 792px;
margin:0px auto;
border-left: 8px solid #bfbfbf;
border-right: 8px solid #bfbfbf;
background-color: #ffffff;
}

coca-cola-man
10-20-2008, 02:23 AM
still comfused, where do i put that code.... in styles settings? or index.php file or what?

Lynne
10-20-2008, 02:30 AM
The css? You would put it at the bottom of the Main CSS page for your style. You also need to put a div with that class around your content - the beginning div tag right before the table in the header template and then the end div tag after the end of the last form in the footer template).