Header size change in twenty eleven
-
Also, I was trying all I could to change the color of the comment content by author. Couldn’t find which one will hit the spot.. None of these work:
.commentlist > li.bypostauthor {
background:#fff;
color:#6D8A24;
}.commentlist .children > li.bypostauthor {
background:#fff;
color:#6D8A24;
}can you please tell me what will?
-
You are on the right track, the reason those examples didn’t work is because, in this case, there is some more specific CSS which sets the paragraph color and it is overriding the CSS you tried. To make your rule more specific, try the following:
.commentlist .children > li.bypostauthor .comment-content p { color: #6D8A24; }Note that this will change any *paragraphs* in comment content by the post author. If you would also like to change the comment author text and links*, you would want to do something like this instead:
.commentlist .children > li.bypostauthor .comment-content p, .commentlist .children > li.bypostauthor .comment-author, .commentlist .children > li.bypostauthor .comment-author a { color: #6D8A24; }* You might not want to change the comment author links, in which case you would want to remove the “, .commentlist .children > li.bypostauthor .comment-author a ” part of the rule above.
-
-
-
Thanks designsimply, I figured it out a bit on my own, and I’m not exactly sure how. I plugged in your code and it actually did the same thing!
I am still trying to remove the sub-menu’s border along the bottom and I’m stumped. Any advice on how to remove it?
Thanks!
http://complimentsfromsarah.com/ -
Figured out the mystery box shadow as well…
#access ul ul { -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; } -
- The topic ‘Header size change in twenty eleven’ is closed to new replies.