Site logo

Archived topic

Linked Text and Headings underline

3 replies · Started by Leslie on May 13, 2021

Viewing posts 1–4 of 4

Hello! Is there CSS I can add so that any body text and any headings that are linked will have a thin underline and have the line be the same color as the link text color setting (or just include the color hex code)?

Thanks for your help!

Hi there,

you can use some CSS like this:

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

The underline will inherit the colors of your links.

Thank you so much David!

Glad to be of help

This archived topic is closed to new replies.