MyBB Community Forums

Full Version: Changing Topic Colors
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm new to this and I know this question may seem easy, but here goes:

I want to start changing the look around a bit of my new forum. Which color code (location) will let me modify the color of the topics in the forums. I want to try a darker blue color.

Thanks
I think you can only change the color of all the links rather than just the topic title, but to do that anyway go to your Admin CP, Themes -> Modify/Delete and choose to Edit the theme you want to edit.

Then scroll down to "Body (Customized in this style)" and then you will see the sections for the colors of the links Smile
The alternative way is to add a specific style tag in the template
Admin CP --> Templates --> *expand your template set* --> Forum Display Templates --> forumdisplay_thread

Find:
{$thread['subject']}
And replace with:
<span style="color: black;">{$thread['subject']}</span>

Not as elegant a solution as putting it in the theme, but I think it'd work.