Changing background color
-
Is there a way to change the background color of my blog?
The blog I need help with is: (visible only to logged in users)
-
If you are talking about the area behind the content, you can add the following and edit the hex color code as desired. The second bit of code turns the background color of the widgets to transparent. If you want them to be a different color than the main content area, you can put a color in there (hex color code, etc.).
#wrapper { background: #CC0000; } .widget ul { background-color: rgba(0, 0, 0, 0); }If you are talking about the background area outside of the content area, you can set the color for that by going to Appearance > Customize > Background and set a color there.
-
-
-
-
In some themes, the author’s, or the site owner’s comments are styled differently to differentiate them from the comments of visitors. Some themes also alternate the styling of odd and even number comments, and some do both.
-
-
Hi disc440, you can control the color.
This targets the author color. If you want it to do something else let us know.
#comments li.bypostauthor > .comment-container { background: #e9f6fc; } -
Hi, not sure about that…I used it but all of the comments still show up in different colors and no real pattern to any of it? It’s no big deal but the comments look rather weird with different colors and some are offset?
-
The pattern is that every other top-level comment has a background color. Replies to any of those will still be in the background color. If the post author (you) replies, those are all colored light blue.
To remove the comment background colors for every other comment as well as for post author comments in the Pilcrow theme, add this to your Appearance > Customize > CSS editor:
#comments li.thread-alt, #comments li.author_comment_alt, #comments li.bypostauthor > .comment-container { background: none; } -
-
- The topic ‘Changing background color’ is closed to new replies.