Changing the colors

Started by Racenut, October 19, 2004, 05:26:22 PM

Previous topic - Next topic

Racenut

I am using the SMF default theme. Which file would I edit to change the font and link colors and where would i find the file?

Thanks

Grudge

style.css in the themes/default directory
I'm only a half geek really...

Racenut

Thanks for the reply. I want to change the color of the font for the board titles. Link color, visited, hover etc. I changed the colors in the following line but all it changed was the cat bar font colors. Help?

/* Normal, standard links. */
a:link
{
   color: #000000;
   text-decoration: underline;
}
a:visited, a:hover
{
   color: #323232;
   text-decoration: underline;
}

/

A.M.A

Board's titles are links .. so changing the above code will change them as well as the category cause it is a link also .. but if you need to have a different color for titles only, you can edit BoardIndex.template.php and look for:
', $board['name'], '

and use something like this
<span class="yourclass">', $board['name'], '</span>

Of course you need to define the class in the style.css or you can put it directly like:
<span style="color: red;">
Really sorry .. real life is demanding my full attention .. will be back soon hopefully :)

Advertisement: