Hi, where and how can I change colors for links to the post? Because from General style it seams I can’t.
Thanks.
I found this CSS and it works,
#main strong > a {
color: #ff073c!important;
}
but I would like to change its color after clicking to the link, and changing hoover color. Can you give me CSS?
One more problem: the red links working in all the posts but not on this post:
Thanks.
Hi,
Thanks for the update. You can target the active and hover state using CSS like this:
#main strong > a:active {
Active state
}
#main strong > a:hover {
Hover state
}
Best regards,
Rikard
Yeah, I did this. I´m really pleased with the result now. Thank you, Rikard!
But, all pages are ok, just one page don’t have the link color:
Hi robertoKM,
Try to clear the browser cache.
What word in that page should change color?
For now I see this code taking effect:
.av_textblock_section .avia_textblock p a {
color: red!important;
}
Best regards,
Nikko