Site logo

Archived topic

Underline links but not heading with CSS

1 reply · Started by Julien on August 9, 2020

Viewing posts 1–2 of 2

Hello,

I am currently trying to underline links with a color line inside paragraph with this :

.entry-content a {
    border-bottom: 2px solid #84B93A ;
}

It does work except that on the homepage for example there are some heading (H3) that are also links to posts. Is it possible to exclude them from underline with CSS ?

Thanks for your help !

Hi there,

You can try this CSS Selector:

.entry-content p a {

It will apply only to links within a Paragraph

This archived topic is closed to new replies.