Archived topic
White gaps
3 replies · Started by Graeme on November 2, 2021
Hi
I have looked for a solution for ages. I need to have a white gap between the blog header and the blog article title?
https://www.octopusintelligence.com/competitive-intelligence-blog/
And I need to remove the white gaps between the blog title and the "Post Featured Image" - I have disabled the WP featured image bit - as below
Sorry to bother you
Hi there,
1. you can add some Top Padding to the Csutomizer > Layout > Container.
If you want to keep the sidebar with no gap then you will need this CSS:
@media(min-width: 769px) {
.is-right-sidebar {
margin-top: -20px;
}
}
Adjust the -20px to suit the top padding you added.
2. You can adjust the Content Separator spacing in Customizer > Layout > Container.
OR use this CSS:
.post-image-below-header.post-image-aligned-right .inside-article .post-image {
margin-top: 1em;
}
Thanks. Answer right in front of my face. Thank you.
Glad to be of help!