Aug 07, 2017 11:11 pm
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
Aug 08, 2017 1:02 pm
Use this CSS code:
#wpforo #wpforo-wrap .wpfl-2 .forum-wrap:nth-child(even) .wpforo-forum{ background-color:#ffffff!important;}
Aug 09, 2017 3:09 am
This worked like a charm, thank you so much for the quick response, much appreciated!