• Hello,
    I would like to know how to make texts linked to hyperlinks more visible to my site users (e.g. change their colors from the rest of the text, have the link underline color visible without needing to hover over it)
    Thank you in advance for your support,
    Jasmine Bouguerouche

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Carolina Nymark

    (@poena)

    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;}
    Thread Starter jasb1234

    (@jasb1234)

    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

    Theme Author Carolina Nymark

    (@poena)

    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;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hyperlinks’ is closed to new replies.