トピックの色を変更する方法

How do I change the topic color from blue to orange?

「いいね!」 1

by CSS

a:visited {
color: orange;
}
a {
color: orange;
}
「いいね!」 3

Okay and do i add this in the theme css?

「いいね!」 1

yes, that is correct

「いいね!」 3

Okay thanks i got it to work. But when i hover over it gets blue how can i fix that?

「いいね!」 1

You use a:hover as your CSS selector.

「いいね!」 3

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.

「いいね!」 2

Yeah that worked thanks for the help

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.