Notifications
Clear all

wpForo 1.x.x [Solved] Alternating grey/white row backgrounds on forums

3 Posts
2 Users
0 Likes
2,050 Views
Posts: 2
Topic starter
(@tkean2011)
New Member
Joined: 7 years ago

Hi 🙂 I've tried almost every selector known to man to get alternating grey and white 

example of one attempted line of code that should work unless I'm totally spacing: 

.wpforo-forum:nth-child(even) {
background-color: #ffffff;
}

The page in question is here:  http://www.propelio.com/community/  

Screenshot attached of what the alternating rows should ideally look like.

Any help you can give would be appreciated. 

2 Replies
Robert
Posts: 10506
Admin
(@robert)
Support Team
Joined: 8 years ago

Use this CSS code:

#wpforo #wpforo-wrap .wpfl-2 .forum-wrap:nth-child(even) .wpforo-forum{ background-color:#ffffff!important;}
Posts: 2
Topic starter
(@tkean2011)
New Member
Joined: 7 years ago

This worked like a charm, thank you so much for the quick response, much appreciated!