Missing gap between title and post image on pages

Hi there,
I have one more problem. There is still a missing gap between title and post image on pages. That’s ONLY on my pages. I tried your code and didn’t recognize that the code made ALL gaps between images and wording wider. I just want it on my pages. Is that possible? This is the code I used:

/Image Padding/
.single-featured {
padding-bottom: 5px;
}

All the best Alex

Hey there

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.
The following CSS will only be added to pages.

Admin Area -> Appearance -> Customize -> Additional CSS

/Add margin to title on pages/
.page .entry-title {
margin-top: 30px;
}

Best Regards,
Support

Hi! This code works great, but it adds a line between the picture and the title. Is there a way to get rid of that line?

Could you please share me the page URL from your site where it is displaying so that i can help you to remove it?

The line is showing up on erinsalmonwrites.com/journal.

You can remove that line using below CSS code.

#page .post-inner-content {
    border-top: 0;
}

Perfect! Thank you!

You are most welcome here :slight_smile: