I want to change the link font colour for the apparent reason - see attachment (grey framed)
please, where can I do that?
What is the theme you are using? Will you please provide a link to your forum.
You should be able to adjust that to your liking, by editing the color attribute in the section .navigate_section ul li a in your theme's index.css file.
EG, in mine, I have
.navigate_section ul li a {
color: rgb(0,0,0);
}
To make the linktree elements stand out in white, I'd change it to:
.navigate_section ul li a {
color: rgb(255, 255, 255);
}
The above might be different slightly in your installation, so a link would help further :)
Thanks, Shambles, using SMF 204 here and no such code but found it:
ul.linktree li a
{
color: #C0C0C0;
}
much better now :)
Colin, using a modified Core theme here for my wife's forum
Thanks, guys!