Archived topic
How to Remove the Bold tag from Headlines
3 replies · Started by Amit on February 1, 2020
My headings H3 and H4 are added with bold tags on home page which is letting away the actual appearance. These headings use our plugin wp show posts. Can you please help on this.
Hi there,
That's being caused by this CSS you're using:
body:not(.blog):not(.archive) .inside-article a {
font-weight: 700;
}
If you need that CSS, you could try this:
body .inside-article h1 a,
body .inside-article h2 a,
body .inside-article h3 a,
body .inside-article h4 a {
font-weight: normal;
}
Hi Tom,
I am just simply interested in making the links in paragraphs on single posts and pages to be underlined, bold and black on hover. I don't want anything to implement on headings and other pages like home and archives. The home page uses the posts from your plugin wp show posts.
Hi there,
replace this CSS:
body:not(.blog):not(.archive) .inside-article a {
font-weight: 700;
}
with:
.single-post .inside-article a {
font-weight: 700;
}