[Support request] links

Home Forums Support [Support request] links

Home Forums Support links

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #468534
    mohamedhassan

    Hi Gp team,
    How do I underline my links?

    regards,
    Mohamed

    #468668
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    .inside-article a {
        text-decoration: underline;
    }
    #468939
    mohamedhassan

    Hi leo,
    Thanks for your support. However I’d like to be able to change the color of the line.

    #469064
    Heiko

    text-decoation:underline uses the color of the text. To have a different color, maybe try this CSS:

    .inside-article a {
        border-bottom: 1px solid #ef234a;
    }

    and for hover

    .inside-article a:hover {
        border-bottom: 1px solid red;
    }
    #469312
    Leo
    Staff
    Customer Support

    Thanks Heiko 🙂

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