Emma Blogger
Member
10 hours, 45 minutes ago
4 Replies
Q:
[Solved] Custom CSS Not Loading – Need Help!
I’m trying to add custom CSS to change the forum colors but nothing seems to work.
I’ve tried:
- Adding CSS in the Customizer
- Using a child theme
- Adding inline styles
The styles just don’t apply. Any ideas what I’m doing wrong?
UPDATE: Alex’s solution worked! I needed to use more specific selectors. Thanks everyone! ✅
Tags: Customization, Troubleshooting
4 Replies
Up
0
Alex Coder
Member
10 hours, 45 minutes ago
Up
0
Mike Support
Member
10 hours, 45 minutes ago
Hi Emma! Can you share the CSS you’re trying to add? That way we can check if there’s a specificity issue.
Also, which theme are you using?
Up
0
Emma Blogger
Member
10 hours, 45 minutes ago
@alex_coder That worked perfectly! 🎉
I didn’t realize CSS specificity was so important. Thanks for the clear explanation – marking this as solved!
Up
0
Emma Blogger
Member
10 hours, 45 minutes ago
@mike_support – I’m using Flavor theme. Here’s my CSS:
.bbp-forum-title { color: #6831c1; }
.bbp-topic-title { font-weight: bold; }
Neither of these are working.
Viewing 4 replies - 1 through 4 (of 4 total)
Join the conversation
You must be logged in to reply to this topic.
I see the issue! The selectors need to be more specific. Try this instead:
The theme CSS has higher specificity, so you need to match or exceed it. The
#bbpress-forumscontainer helps with that! 🎯