CSS Code for changing font color on all my post titles
-
I have searched the forum and the web for the correct css code for changing the font color on recipe post titles, bullets and numbers on my recipe blog. I have used several different codes but none are working for the Twenty Ten theme. I would appreciate any help.
Here is the code that I have used and it’s not working…
.entry-title, .entry-title a {
color: #6B4226;
}.entry-title a:hover {
color: #8B2323;
}.main-navigation .current-menu-item > a {
color: #6B4226;
}The blog I need help with is: (visible only to logged in users)
-
Hi there, I took a look at your site with my web inspector and you were very close. For the non-hover color, the selector used in the theme is slightly different and more specific. Replace
.entry-title, .entry-title a { color: #6B4226; }with this
.entry-title a:link, .entry-title a:visited { color: #6b4226; }For the menu, use this
#access a { color: #6B4226; }If you are not familiar with the web inspector in your browser, take a look at our support page on How to Find Your Theme’s CSS where you will find some brief screencasts to get you started with it. I find it an invaluable tool when working with CSS.
-
Well, if you were my neighbor, I’d bake you a pie! lol
It worked! Thank you for helping me. -
Well, if you were my neighbor, I’d bake you a pie! lol
It worked! Thank you for helping me. -
- The topic ‘CSS Code for changing font color on all my post titles’ is closed to new replies.