Hi!
The theme uses a bottom border instead of an underline,
to add an underline to all links, you can add this code in the Additional CSS
option in the customizer.
But this won’t remove the bottom border.
a{text-decoration: underline !important;}
If you want the underline to be removed on hover (it helps people see when they are on that link, if the text decoration is different when they hover), you can use:
a{text-decoration: underline !important;}
a:hover{text-decoration:none !important;}
Hi,
Thank you very much for your help!
I find it a little disturbing though to have 2 underlines, so I am wondering if it would be possible to just let the underline stay the way it is and rather change the color of hyperlink texts from the regular text on all the site? (for example the regular text would stay black, but the hyperlinks would be purple or whatever). In the customizer, I can’t see a color customization dedicated to hyperlinks, is there one? Also I would like it not to affect the upper menu but hyperlinks only if it is possible.
English is not my mother tongue, so I hope my request stays clear.
Thank you in advance once more!
JB
Hi!
No, there is no option to change the link color, only the link border/underline color.
To change the link color only for the content area and widgets and not the menu, you can try:
.content-area a, .widget a {
color: purple;
}