Applying CSS
-
I am trying to apply a background color using the style sheet. This is the code I wrote
body
{ background-color: #778899;
}I then tried to preview the change and no changes were made. What am I missing?
The blog I need help with is: (visible only to logged in users)
-
You can change the background color using the Appearance → Background page. Did you try that already?
Note that if you would prefer to override that using custom CSS, you can use this on your Appearance → Custom Design → CSS page:
body { background-color: #789 !important; }
- The topic ‘Applying CSS’ is closed to new replies.