• Resolved TheSupercargo

    (@thesupercargo)


    Much as I like Sydney, I’ve got users asking where the hyperlinks are. Sometimes I’m asking it myself. These are the hyperlinks in the text of the pages and posts, not menus.

    I may be blind but – surely it must be possible to style hyperlinks in the Customiser? Can someone point me to the right place?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey there TheSupercargo,

    How are you doing today?

    I’ve checked the theme and I couldn’t find an option to change links of the color in the customizer.

    However, you could easily do this with some custom CSS. To change color of the links in your content please add the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    https://www.ads-software.com/plugins/simple-custom-css

    .entry-content a {
        color: #d65050;
    }

    Replace color hex value to display different color. You can use sites similar to this one to get hex value for the color of your choice: https://www.color-hex.com/

    Hope this helps ??

    Cheers,
    Bojan

    Thread Starter TheSupercargo

    (@thesupercargo)

    Thanks Bojan,

    That did the trick.

    For anyone else looking for this, I made hyperlinks bold as well as changing the colour slightly by adding the following adaptation of Bojan’s code to my child theme css.

    .entry-content a {
        color: #000066;
        font-weight: bold;
    }

    John

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to style hyperlinks?’ is closed to new replies.