background color – threaded comments
-
> i’ve edited the CSS on my blog template with pretty good success, but
> i’ve run across something that i JUST CANNOT seem to figure out, even
> after hours of searching forums and tutorials. i don’t know if anyone
> can help me, but i would LOVE some advice on one small piece:
>
> i have set the background for the comments to be the same as the
> background of the page, but every other comment alternates with a
> lighter background color. i would like EVERY comment in the list to be
> the same background color, but i can’t seem to find the piece of CSS
> code that i should alter to achieve this.The blog I need help with is: (visible only to logged in users)
-
-
-
Trisha,
Add these definitions to your CSS:
.commentlist .comment{padding: 5px 10px;} .commentlist .thread-odd { background: #404040; }That should do it.
-
-
devblog,
do you think you could help me with one more thing? what is the selector that controls the color of the “next page” link at the bottom of each page? right now it is the same color as the background, and i can’t seem to find the tab in the css to change the color declaration. thanks!
-t
-
-
-
did you save the CSS or just previewed it?
Also, I found this in your code:
#commentlist a,#postnav a { background-color:#404040; color:#404040; }Can you see what’s wrong with it?
If you’ve always had the code above, then you won’t even need the code I previously gave you… what you already have is “almost” correct.
If after a while you can’t still spot what’s the problem, let me know.
-
ha! fixed now. i just passed right over that section when i was skimming because it started with #commentlist.
thanks!
- The topic ‘background color – threaded comments’ is closed to new replies.