color of content background
-
how can i change the color of the content page from white to any other color in the “neat” template?
-
Just identify the codes for those colours, locate the existing background colour setting in the CSS, and replace it.
-
thanks for the response. i understand using the color codes but am unable to insert the proper code for the color setting within the content page. from what i understand, in using css over an existing template within wordpress, we are to write content. your email implies that there is existing css code somewhere?
-
give us a link to your blog. in neat I think you’re looking for the “page” or “content” selector.
-
-
If it’s the dark blue you want to change, it’s in the body {} selector.
If it’s the white, then change in “page {}” and/or “content {}”.
Colours galore here: http://www.w3schools.com/html/html_colornames.asp -
thanks for the help, need one more bit of clarification. i can change to dark blue to red, by this code:
body
{
background-image: url(stars.gif);
background-color:red
}but cannot write the code that works for changing the white. i replace “body” with “page” and “content” which only changes pieces of the white.
-
#page { background-color: white; margin: 0 auto; padding: 0; width: 700px; }and the other selector named content both have a “background-color” – change one at a time and see what happens.
-
-
-
- The topic ‘color of content background’ is closed to new replies.