In the default theme, how do I change the color of the SMF copyright?
If you're referring to the "Powered by SMF 1.1 RC3 | SMF © 2001-2006, Lewis Media" text at the bottom of your forum, they are links, so the color is controlled by:
style.css
/* Normal, standard links. */
a:link
{
color: #476C8E;
text-decoration: none;
}
a:visited
{
color: #476C8E;
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
thanks