Links text color and highlighting - by Evgeny V

This topic has 6 replies, 3 voices, and was last updated 4 years, 3 months ago ago by Rose Tyler

  • Avatar: Evgeny V
    Evgeny V
    Participant
    January 14, 2020 at 08:16

    Hello,

    How to highlight the links in text by default? For example, by blue color like on your forum page: https://prnt.sc/qndmkh , or underlined text or other

    They are currently in the same gray color as the rest of the text: https://prnt.sc/qndp1t

    5 Answers
    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    January 14, 2020 at 09:28

    Hello,

    There is no special option to change links color but you can change it using custom CSS

    a:focus, a:hover {
        color: #1089ef;
    }
    a {
        color: #68a9e0;
    }

    Regards

    Avatar: Evgeny V
    Evgeny V
    Participant
    January 17, 2020 at 16:00

    Hello,

    Thanks. I have used the code above and it works for all links, include product name links on the main and shop pages: https://prnt.sc/qp3qkg

    Is it possible to apply highlighting for links, but except product names on the above mentioned pages?

    Regards,

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    January 17, 2020 at 16:47

    Hello,

    You are welcome.
    Then replace code above by this one

    a:focus, a:hover {
        color: #1089ef;
    }
    a {
        color: #68a9e0;
    }
    .product-title a {
        color: #222;
    }
    .product-title a:hover, .product-title a:focus {
        color: #888;
    }

    Regards

    Avatar: Evgeny V
    Evgeny V
    Participant
    January 23, 2020 at 14:36

    Hello,

    Thank you!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    January 23, 2020 at 14:40

    Hello,

    You’re welcome!

    Regards

  • Viewing 6 results - 1 through 6 (of 6 total)

The issue related to '‘Links text color and highlighting’' has been successfully resolved, and the topic is now closed for further responses

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.