Change font color of stick and super sticky bbpress forum topics

Hello support team,

I would like to change the font color of just the topics on the sticky and super sticky posts.

I have used the css

.bbp-topic-permalink{
font-size: 16px;
color: #D4894D;
}

and this changes regular post titles as well.

Help would be appreciated!

Hello @dstro003,

Thanks for writing in! :slight_smile:

Please add this code to X > Launch > Theme Options > CSS:

#bbpress-forums div.odd.bbp-topic-permalink
#bbpress-forums div.even.bbp-topic-permalink {
    color: #000;
} 

Then change to the color that suits your needs.

Hope this helps.

Hey Jumar,

I have added the code and it does not seem to change the font color of just the topics on the sticky and super sticky posts.

Is there another code to make this work?

Thanks

Hi again,

Please use this code instead:

.sticky .bbp-topic-permalink {
    color: #58d2ef !important;
}

Let us know how this goes!

Great! Thank you for the updated code :slight_smile:

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.