MyBB Community Forums

Full Version: Sub forum text link color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can anyone point me to the right area to change this text color?
The theme I use, the text for the main forum, description, and sub forum text all the same color.

Thanks in advance Smile
It's actually just normal text made bold with a <strong> tag.

If you wish to change the colour you need to open up the forumbit_subforums template and change the <strong> tag to something like <strong style="color: red;">.
Thank you Chris!


EDIT:
Seems all I have in that is area is
<br />{$lang->subforums} {$sub_forums}
It's actually in languages/english/index.lang.php. It should be at the bottom as something like:
$l['subforums'] = "<strong>Sub Forums:</strong>";
Change it to whatever you want, but remember if you use your own quotation marks remember to escape them \"

(You can also use the Language Manager utility in the Admin CP, if you've CHMODed all your language files so that the server can write to them.
Thanks again Dennis.Will give it a try later.