Simple background color change in Misty Look
-
I am very happy with Misty Look but all I want to do is change the background color. I have no idea what the background color is, or if it is an image to begin with, before I change it. Can someone tell me what #page I am starting with here?
blog: http://rhondaspellman.wordpress.com
Thank you.
-
Okay,
This is your code:
background-color { color:green; }You wrote the “background-color” property as a selector; also, the “color” property is for text. Your implementation is wrong.
To change the background color of your blog, change the current code in your CSS editor to this:
body { background: green; }That should do it.
HTH
- The topic ‘Simple background color change in Misty Look’ is closed to new replies.