Site logo

Archived topic

links

4 replies · Started by mohamedhassan on January 11, 2018

Viewing posts 1–5 of 5

Hi Gp team,
How do I underline my links?

regards,
Mohamed

Hi there,

Try this CSS:

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

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

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;
}

Thanks Heiko :)

This archived topic is closed to new replies.