please how do i change the colour of my hyperlinked texts

  • Unknown's avatar

    please how do i change the colour of my hyperlinked texts to red ,I have search but I’m not getting the info I want. The blog I need help with is handsomebeauty blog

  • Hi

    You’ll need to edit the custom CSS of your site to change your link color. You’ll need to have the premium or business level account to access that feature. Here’s some background information on custom CSS: https://en.support.wordpress.com/custom-design/editing-css/

    If you do have one of those accounts, here’s the code that you’ll want to add to your custom CSS editor:

    a {
        color: red;
    }

    If you’d like a different color for your link, you can add any hex value.

    For example

    a {
        color: #bf3535;
    }

    In addition, you may also wish to add this text to your custom CSS. This will change the green in the main navigation area to red

    .site-navigation .current_page_item > a, .site-navigation .current_page_ancestor > a, .site-navigation .current-menu-item > a, .site-navigation .current-menu-ancestor > a {
    color: red;
    }

    Here’s a site where you can look up hex values for many colors: http://www.color-hex.com

    Hope this helps!

  • The topic ‘please how do i change the colour of my hyperlinked texts’ is closed to new replies.