How do I change the topic color from blue to orange?
by CSS
a:visited {
color: orange;
}
a {
color: orange;
}
Okay and do i add this in the theme css?
yes, that is correct
Okay thanks i got it to work. But when i hover over it gets blue how can i fix that?
You use a:hover as your CSS selector.
Maybe it would be a good idea to change the tertiary color in your color scheme instead of targeting <a> tags and their state? Because it can have collateral effects and you may need to add more and more CSS to prevent it.
Yeah that worked thanks for the help
