If I want to use everything associated with this but want to change the content background color for the pages of the blog as an example
is all I need to change is this 1C1E23?
thanks
If I want to use everything associated with this but want to change the content background color for the pages of the blog as an example
is all I need to change is this 1C1E23?
thanks
The line to change includes a background image reference as well as the colour - style3.css line 53:
#wrapper_main {
background: url("../images/skin3/bg_gradiant_body.png") repeat-x scroll 0 0 #1C1E23;
border-top: 1px solid #2A313B;
}
If you don't want a background image take that code out so it looks like this:
#wrapper_main {
background: #1C1E23;
border-top: 1px solid #2A313B;
}
then just change the colour HEX value (1C1E23)
thank you
You must log in to post.