Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi raizaduran. You can add this to your child theme CSS. You need to use the !important rule because the primary color is an internal style which has a higher precedence than an external stylesheet:

    /* change link color to blue */
    a {
        color: #00f !important;
    }
    Thread Starter raizaduran

    (@raizaduran)

    Thank you bdbrown. But it turned every hyperlink existed on the website in blue color, which resulted dangerously wrong for me.

    See the screenshot: https://www.dropbox.com/s/m4v9pskdzexoa6w/Screenshot%202016-07-02%2016.30.04.png?dl=0

    and here is the live url: http://www.indiavirtualinfo.com/blog/

    Any possible way, where I can make the color changes of the hyperlink only within the post content? Not in title, breadcrumb, menu or anywhere else. (only only within the post content)

    Thank you.

    it turned every hyperlink existed on the website in blue color,

    Well, yes. You gave an example but didn’t specify that you wanted the change to affect only the links in the post content. More information is better 😉 Try this:

    /* change post content links to blue */
    article .entry-inner a {
        color: #00f;
    }
    Thread Starter raizaduran

    (@raizaduran)

    Thank you bdbrown. It worked. Thanks a lot 🙂

    You’re welcome; glad it’s working.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘hyperlink color’ is closed to new replies.