PDA

View Full Version : Changing Style for sections of site


cooly291
06-09-2006, 11:53 PM
Ok, I need some help with my layout:

I have a central layout, the main page of the site, then I have different sections with various content. I want each section to have a layout with images and colors relating to that particular section. What exact approach should I use, without updating each particular layout for a minor change. Make any sence?

harbingerOTV
06-10-2006, 12:35 AM
something like this could work depending on what you need:


#content {
background: #fc3;
}
#sidebar {
background: #f6c;
}

#grey #content {
background: #ddd;
}
#grey #sidebar {
background: #666;
}


and then the main pages would be like:

<body>
<div id="content"></div>
<div id="sidebar"></div>


and the grey pages like:

<body id="grey">
<div id="content"></div>
<div id="sidebar"></div>