Site logo

Archived topic

CSS H2 margin on Blog post pages only

3 replies · Started by Paul on September 6, 2021

Viewing posts 1–4 of 4

Hi There,

I've added some CSS to create add a top margin on h2 on posts

/* Add margin above h2 in posts */
.entry-content h2 {
margin-top: 60px;
}

It works fine BUT it is also effecting the h2's on non blog post pages. Is it possible to use a top margin value that only effects h2s within a post (not pages)?

Cheers

Hi there,

Try this:

.single .entry-content h2 {
    margin-top: 60px;
}

Perfect! Cheers Leo :)

Glad to help :)

This archived topic is closed to new replies.