I am surprised that i’m not finding a way to control styling for TEXT copy links specifically. I’m looking at Xstore>Theme option>Styling/colors, where most of the styling control copy and buttons are. But I want to manage the styling of links in copy specific to blog posts and pages. I want them to be underlined and specific colors… i’ve tried adding custom global css like the following—but it then adds underlines to my navigation links, footer links, etc—which I do not want those to be effected.
So how do I target all content copy links only, globally?
Thank you in advance for direction.
`
/*SR Global text link styling control
/* unvisited link */
a:link {
color: #B9975B;
text-decoration: underline;
}
/* visited link */
a:visited {
color: green;
text-decoration: underline;
}
/* mouse over link */
a:hover {
color: #919D9D;
text-decoration: underline;
}
/* selected link */
a:active {
color: #1D3C34;
text-decoration: underline;
}