• Resolved medievalreporter

    (@medievalreporter)


    I managed to get links in my main text body underlined by adding the following to custom CSS through Blocksy:

    .hentry .entry-content a
    {
      text-decoration: underline;
    }

    My question is: how do I underline links on Categories/Tags pages? The code above doesn’t seem to affect them.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hey medievalreporter,

    Thanks for reaching out.

    Depending on which approach you might want to take when underlining links, there’s an easy do-it-all approach to underline all the links on the website.

    You can do that with

    a {
    text-decoration: underline;
    }

    Also, you could try underlining just the main container links with

    .ct-container a {
    text-decoration: underline;
    }

    Let me know if this helps.

    Thanks,
    Eduard

Viewing 1 replies (of 1 total)
  • The topic ‘Underline hyperlinks’ is closed to new replies.