Site logo

Archived topic

Add Underline Hover On Footer Widget, Post, And Pages

3 replies · Started by Dipak Singh on February 19, 2021

Viewing posts 1–4 of 4

Hello Tom,

I want to underline my site posts, pages, and footer widget link.
Which CSS I need to use.
Please tell me.

Hi there,

Can you link us to the site in question? So we could check the elements to provide the proper CSS writeup.

Also, do you want ALL the texts to have underline or only the links? Let us know.

You can use the private information text field to provide the site details. Thank you.

I want to add an underline hover on the text link in the post and page and widget.
I have already tested this CSS

.widget a {
text-decoration: underline;
}

but its only underline hover widget

If you need the underline to appear on hover, you need to use the pseudo-class :hover

Example:

.footer-widgets a:hover {
    text-decoration: underline;
}

You can try this CSS I've provided. It should work for all the links on your footer widget area assuming you're not using any custom footer on your entire site.

This archived topic is closed to new replies.