Modifying some colors…
-
There are some colors I’d like to edit for my blog…
– Color scheme of comment box and comments
– Color scheme of scroll bar
– Color of titles of articles when at its direct link
– The current grey words: “posted in”, “posted on” “theme: twenty eleven…”, colors of links to pages when mouse is hovering over it
– Color scheme of search barIs it possible to customize all of these colors? Thanks!!
The blog I need help with is: (visible only to logged in users)
-
Yes, all those things are customizable. I think the best way to start would be to take a careful look at the original stylesheet for your theme, pull out the relevant color details in the sections you want to change, and create new CSS based on it. For example, open the following page and scroll down to the =Comments section:
https://s-ssl.wordpress.com/wp-content/themes/pub/twentyeleven/style.css?m=1326288983g&minify=false
See how many different color settings there are in that block? We can help you pull out the relevant details, but it would be nice to start small and with some more specific examples. Such as, what colors did you want to change for comments? Just the text color? Background colors? Everything about them?
-
Some of the other items you listed out are easier. Like article title links. Here’s an example:
.entry-title, .entry-title a { color: #281718; } .entry-title a:hover, .entry-title a:focus, .entry-title a:active { color: #DBBB8D; } -
– The current grey words: “posted in”, “posted on”
.sep { color: red; }“theme: twenty eleven…”
#site-generator, #site-generator a { color: red; }colors of links to pages when mouse is hovering over it
header#branding nav a:hover { color: red; } -
– Color scheme of search bar
#branding .only-search #s { background-color: #666; border-color: #000; color: #222; } #branding .only-search #s:focus { background-color: #bbb; }Change out the color values as necessary.
-
– Color scheme of scroll bar
Based on a quick search, browsers don’t really offer support for changing scrollbar colors, but IE 5.5 used to and Webkit has some experimental pseudo tags for it, but those won’t work in WordPress.com.
- The topic ‘Modifying some colors…’ is closed to new replies.