Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] Alternating Row Colors?

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

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

6 Replies
Chris
Posts: 3611
(@chris)
Famed Member
Joined: 4 years ago

Hi @badge,

Please provide a screenshot of the rows.

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

Here is a screenshot of what I want to do.

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

Famed Member
Posts: 3611

@badge,

ok got you, please Provide Main Category URL.

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

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

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

Famed Member
Posts: 3611

@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: 6 years ago

Awesome thank you!