Archived topic
Highlighted links in italics
5 replies · Started by CRISTO on April 11, 2017
Is there a simple way for links on my site to turn to italics when highlighted? I already have them change color but would like them to change shape a bit as well.
Hi Cristo,
This CSS should work for all links in the content area:
.site-content a:hover {
font-style: italic;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know
Thanks, Leo. That worked like a charm! Of course I should have known it would since Tom is the one who wrote it.
One other problem I have (probably something I did wrong) my visited links are supposed to show up in red, but they don't.
Could try something like this:
.site-content a:visited {
color: #000;
}
Let me know.
Perfect, again. Thanks for the quick response.
Glad I could help!