Site logo

Archived topic

Anchor Links underline

3 replies · Started by Chitika on October 2, 2020

Viewing posts 1–4 of 4

Hello.
I have seen on some sites, that links in a post are underlined with a color.
Instead of the anchor text being highlighted.
A typical example is this .

https://ibb.co/sw82QRK

How can I implement this in GP.

Hi there,

it requires a little CSS - if you want to use a line color different to the text then add this CSS:

.entry-content a {
    position: relative;
}
.entry-content a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: red;
}

Change the background-color: red; to set a different color rule

@David: Thanks it worked and is beautiful.

You're welcome

This archived topic is closed to new replies.