Site logo

[Resolved] Underline on hover for body text in pages and posts

Home Forums Support [Resolved] Underline on hover for body text in pages and posts

Home Forums Support Underline on hover for body text in pages and posts

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #2537308
    Peter

    I’ve tried many CSS examples in various forum posts without any luck. I want all the links in the body text of my pages and posts to underline on hover, but not titles, buttons, images, etc.

    Can you help?

    Thanks.

    #2537330
    Leo
    Staff
    Customer Support

    Hi there,

    It could be tricky to include that many conditions in CSS unfortunately.

    Can you start with this and link me to the page/post if it doesn’t work?

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

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know 🙂

    #2537343
    Peter

    Hi Leo,

    That didn’t work. It only underlined the titles on the Home page. Truthfully, it’s not that important that we need a complicated CSS script. Thanks anyway.

    #2537345
    Leo
    Staff
    Customer Support

    Another way to approach this is to add a custom class link-underline when you want the link to have an underline, then we can use this CSS to target them specifically:

    .entry-content a.link-underline:hover {
        text-decoration: underline;
    }
    #2537351
    Peter

    I’ll give it a shot. One question: How do I add a custom class?

    #2537356
    Leo
    Staff
    Customer Support

    Hmm it depends. Are these stand-alone block/links or links within a paragraph block?

    #2537375
    Peter

    links within a paragraph block

    #2537384
    Ying
    Staff
    Customer Support

    Hi Peter,

    this article explains how to add additional CSS class to blocks:
    https://wordpress.com/support/wordpress-editor/adding-additional-css-classes-to-blocks/

    #2537406
    Peter

    Thanks. I’ll check it out.

    #2537489
    Ying
    Staff
    Customer Support

    No Problem 🙂

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.