Site logo

Archived topic

Exclude wpshow posts from underline links

5 replies · Started by Carlo on July 6, 2019

Viewing posts 1–6 of 6

Hi,
i just add the following code to add a undeline to all links inside of the content.

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

problem is that it has also added underline links to WPSHowPosts (im using them on custom category pages). any way to exclude that?
also if possible to exclude all the H1-H4?

only want the actual content to have underlined links if possible.

thanks

Hi there,

We would need to add a more specific selector to remove the underline for WP Show Posts.

Any chance you can link us to the page in question?

You can edit the original topic and use the private URL field.

Let me know :)

Hey Leo, I just updated the first post with the link.

Hi there,

try this CSS to remove them from the WPSP list:

.wp-show-posts-entry-title a {
    text-decoration: none !important;
}

brilliant, worked like a charm!

You're welcome

This archived topic is closed to new replies.