Notifications
Clear all

[Solved] Alternating Row Colors?

7 Posts
2 Users
0 Reactions
539 Views
Posts: 43
Topic starter
(@badge)
Trusted Member
Joined: 5 years ago

Id like the forums and topics in the forums to have alternating row colors is this easily doable?

6 Replies
Chris
Posts: 3649
(@chris)
Famed Member
Joined: 3 years ago

Hi @badge,

Please provide a screenshot of the rows.

Posts: 43
Topic starter
(@badge)
Trusted Member
Joined: 5 years ago

Here is a screenshot of what I want to do.

1 Reply
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3649

@badge,

ok got you, please Provide Main Category URL.

Posts: 43
Topic starter
(@badge)
Trusted Member
Joined: 5 years ago

Sie forum is located here https://projectp51.com/community/

1 Reply
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3649

@badge,

Insert the below CSS in Custom CSS Code field from wpForo > Settings > Colors & Styles Tab. 

Please note that it's not a good one as there you have to set every forum separately, I'm sorry, but this is the only CSS that I could write for your request:

#wpforo #wpforo-wrap #wpf-forum-4 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-4 .wpforo-forum-data,
#wpforo #wpforo-wrap #wpf-forum-6 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-6 .wpforo-forum-data,
#wpforo #wpforo-wrap #wpf-forum-5 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-5 .wpforo-forum-data,
#wpforo #wpforo-wrap #wpf-forum-9 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-9 .wpforo-forum-data{
    background: #f2f2f2;
    padding: unset;
    margin: 0px 0 10px 0;
}
#wpforo #wpforo-wrap #wpf-forum-2 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-2 .wpforo-forum-data,
#wpforo #wpforo-wrap #wpf-forum-7 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-7 .wpforo-forum-data,
#wpforo #wpforo-wrap #wpf-forum-8 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-8 .wpforo-forum-data,
#wpforo #wpforo-wrap #wpf-forum-10 .wpforo-forum, #wpforo #wpforo-wrap #wpf-forum-10 .wpforo-forum-data{
    background: #cbcaca;
    padding: unset;
    margin: 0px 0 10px 0;
}
Posts: 43
Topic starter
(@badge)
Trusted Member
Joined: 5 years ago

Awesome thank you!