Info
- 3 posts
- 2 voices
- Started 5 years ago by lolloverminutes
- Latest reply from lolloverminutes
- This topic is resolved
Alternate Post Backgrounds
-
- Posted 5 years ago #
Pardon my probable ignorance, but I was working on modding a wordpress theme to work with my bbPress install. I was wondering how to make it so that posts alternate color.
-
- Posted 5 years ago #
If you look at the default topic template (
bb-templates/topic.php), you will see<li id="post-<?php post_id(); ?>"<?php alt_class('post', $del_class); ?>>the
alt_class()function gives every otherlielement aclass="alt".So if you use that function in your topic template, you can put something like
.alt { background-color: red }in your CSS file.
-
- Posted 5 years ago #
Thank you very much. :D
-
You must log in to post.