main page color change
-
How do you change the color or your main page? It is white by default. I would like to change the area behind the text to a different color. I assume this is possible through css.
The blog I need help with is: (visible only to logged in users)
-
If I’m understanding you correct then this should do it:
.hentry { background-color: #C7DBFF; /* replace with any desired hex value */ }You can find your desired hex color value with a tool: http://www.colorpicker.com/
-
That certainly helps! now how would I change the background of the main page (the space in between my text box and widgets).
-
That would be:
.site-content { background-color: #c7dbff; /* replace with any desired hex value */ }
- The topic ‘main page color change’ is closed to new replies.