<em>@tomo555 186776 wrote:</em><blockquote>Is it possible to have a separate site background colour then the content colours in Purity 2?
For example this forum template has a white background content area with a separate blue site background colour. If so can someone please show me how?
Thanks very much,
Tomo</blockquote>
Hi Tomo,
Please find in template.css line 913 to edit your site background (change the color as well as the background image)
#ja-container {
background:url("../images/container-bg.gif") repeat-x scroll center top #FFFFFF;
border-bottom:5px solid #CCCCCC;
position:relative;
z-index:5;
}
Then you could style for content background by adding background style for this class (file template.css, line 920)
#ja-container .main {
background: #FFFFFF; /*add this to make main content has white background*/
min-height:300px;
padding:20px 0;
}