Hi
I've successfully used CSS code to change the colour of a member's name in 'Our newest member', but I'm stuck on how to do the same in 'Currently viewing this topic' and 'Last Post by'.
I've tried various options with no joy.
Any pointers, please?
Hi,
but I'm stuck on how to do the same in 'Currently viewing this topic'
You can use the CSS coede below:
#wpforo #wpforo-wrap .wpf-topic-visitors p.wpf-viewing-users {color:#872727;} #wpforo #wpforo-wrap .wpf-topic-visitors p.wpf-viewing-users a {color:#872727;}
and 'Last Post by'
Could you please show on some screenshot that exactly you need to change?
Maybe there's some sort of conflict with Elementor. I'll try fiddling around with the codes and see if I can get something to happen.
Thanks for your help.
Okay, with a little experimentation, I've done it.
I used:
#wpforo #wpforo-wrap #wpforo-stat-body .wpf-newest-member a{
color: #c60000 !important;
}
and
#wpforo #wpforo-wrap .wpf-topic-visitors a {
color: #c60000 !important;
}
Those two pieces of code have affected the member's name in:
'Last post by.....'
The name under the avatar
'Currently viewing this topic.....', and
'Our newest member:'
I just wanted to check with you that what I've done is okay and shouldn't cause any issues!