MyBB Community Forums

Full Version: Changing Link Colors on Index Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to change the link color for the forums on my index page. I know I can change the color globally, but I really want to leave that the way it is and JUST change the main forum link color. Which element do I need to include in my stylesheet in order to do this? Thank you!
Go to your themes forumbit_depth2_forum template and find:

<a href="{$forum_url}">{$forum['name']}</a>

Add your desired color to the link. Example:

<a href="{$forum_url}" style="color: #000">{$forum['name']}</a>

That will make the forum links black.
(2012-09-14, 10:14 PM)Tecca Wrote: [ -> ]Go to your themes forumbit_depth2_forum template and find:

<a href="{$forum_url}">{$forum['name']}</a>

Add your desired color to the link. Example:

<a href="{$forum_url}" style="color: #000">{$forum['name']}</a>

That will make the forum links black.

This. The inline CSS will overide that of the stylesheet.