colours

  • Unknown's avatar

    I want to change the colour of hyper links

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,
    Use the following codes and edit the colors according to your need.

    1. Change the hyperlink color of only the post title:

    .entry-title a {
        color: #52cfe4 !important;
    }

    2. Change the hyperlink color of only the site title:

    .site-branding .site-title a {
        color: #ef7171 !important;
    }

    3. Change the color of all the hyperlinks:

    a {
        color: #5ad5f3 !important;
        text-decoration: none;
    }

    Hope this helps :)

  • The topic ‘colours’ is closed to new replies.