Hyperlink color - by Astobobo - on WordPress WooCommerce support

This topic has 8 replies, 3 voices, and was last updated 5 years, 7 months ago ago by Olga Barlow

  • Avatar: Astobobo
    Astobobo
    Participant
    August 3, 2018 at 12:44

    Hello,

    sorry for the silly question, but I can’t find an option to change the hyperlink color.

    7 Answers
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 3, 2018 at 13:05

    Hello,

    You can change “Main Color” in Theme Options > Styling > Content.
    Feel free to ask if you have any other questions.

    Regards

    Avatar: Astobobo
    Astobobo
    Participant
    August 3, 2018 at 13:45

    This does not change the link colors for my site. I have it set to blue, but the hyperlink color (in the posts and other texts) is black (the text is grey).

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    August 3, 2018 at 16:03

    Hello,

    Use the custom to change the links for the post titles (Theme Options > Styling > Custom CSS)

    a:hover {
        color: #0162b2;
    }

    Also, remove the custom CSS from the home page to change the red color to default from settings http://prntscr.com/keb448

    Regards

    Avatar: Astobobo
    Astobobo
    Participant
    August 4, 2018 at 06:45

    Thank you, but the hover option only changes the color when mouse is over the link. I’d like to have the links blue and underlined (old style 🙂 ) so they are obvious to the visitor. This is very important for posts, because they are mostly advices and tutorials.

    Found this in the CCS:

    a {
    text-decoration: underline;
    cursor: pointer;
    color: #0162b2;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    }

    …but it changes every link to underlined, including headings.

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    August 4, 2018 at 12:37

    Hello,

    Do you want to change the style of the links in the post content? Then use the following custom

    .content-article a {
        color: #0162b2;
        text-decoration: underline;
    }
    .content-article a:hover {
        color: #1e1e1e;
    }

    Because menu, product title, categories, brands – all these elements are also links and you can’t change the links decoration using global a tag.

    Regards

    Avatar: Astobobo
    Astobobo
    Participant
    August 4, 2018 at 21:10

    Thank you very much, that did the trick. But it would be nice if there was an option to change the look of the links.

    Is the custom CSS preserved after theme updates?

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    August 6, 2018 at 08:38

    Hello,

    I passed your request about links color to our developers. Custom CSS won’t disappear after theme update.

    Regards

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

You must be logged in to reply to this topic.Log in/Sign up

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