Notifications
Clear all

[Solved] How to change color of the forum information section?

5 Posts
3 Users
1 Reactions
481 Views
Posts: 3
Topic starter
(@stefi)
Active Member
Joined: 10 months ago

Hi everyone, I would like to understand how I can change the color of the "the last member" section? you see the user's email in a barely visible color on a white background, I would like to change it to red

4 Replies
Robert
Posts: 10548
Admin
(@robert)
Support Team
Joined: 8 years ago

Hi @stefi,

This is the link color of your website. Also, it may come from the #11 color of setting in wpForo > Settings > Colors and Styles admin page.

You can use custom CSS code to change that color:

#wpforo #wpforo-wrap #wpforo-stat-body .wpf-newest-member a{
   color: #0000DD;
}
Posts: 3
Topic starter
(@stefi)
Active Member
Joined: 10 months ago
hi I tried to add this code in the additional css in the color settings, but nothing changed, currently the code present is this

#wpforo-wrap{
font-size: 13px; width: 100%; padding: 10px 0; margin: 0px;
}
#wpforo #wpforo-wrap #wpforo-stat-body .wpf-newest-member a{
color: #dd3333;
}

the first code was already present by default

1 Reply
Tutrix
(@tutrix)
Joined: 4 years ago

Noble Member
Posts: 1357

@stefi 

try using !important

#wpforo #wpforo-wrap #wpforo-stat-body .wpf-newest-member a{
color: #dd3333 !important;
}

if that doesn't work either, give a link to your forum

Posts: 3
Topic starter
(@stefi)
Active Member
Joined: 10 months ago

yess! now it worked! thank you so much ❤️