Archived topic
Change h2 font from single posts only
3 replies · Started by Hilton on September 27, 2019
Hi,
I'd like to know what CSS can be used to change h2 inside single post content (not affecting homepage, archives pages and sidebar widget titles).
I've tried .single-post h2, .single-post .h2 {} but it changed widget titles too, and I only want to change the heading h2 inside posts content.
Thanks
Hi there,
try .single-post .entry-content h2
Hi David,
I used the following css and it worked :)
Thanks
.single-post .entry-content h2 {
font-family: inherit !important;
font-weight: 600 !important;
font-size: 32px !important;
}
Nice :) Glad to be of help