Archived topic
Container Settings of the theme
7 replies · Started by Dev on July 22, 2021
Hello,
On my site why there is a lot of white space between each post. See this image. https://prnt.sc/1edvlvv
And now see this site there is no such white or blank space - https://prnt.sc/1edw3bp
How can I achieve the same for my site? I had added the link to my site private box.
Please let me know what settings I need to do. Thanks.
Hi there,
the space between posts is defined in Customizer > Layout > Container > Separating Space.
However you're seeing a larger gap as you have added a box shadow to the inner container which means the your observing extra space thats from the container padding. That kind of styling doesn't work particularly well with your current layout.
I would suggest changing the Customizer > Layout > Container --> Structure to Separate Containers and set the Alignment to boxes first.
Thanks. I don't know how that shadow is there. I think that shadow is part of the Marketer theme.
How can I remove that shadow? Would you please tell me?
Go to Customizer > Additional CSS - and delete this block of code:
.inside-article, .sidebar .widget, .comments-area {
border-right: 2px solid rgba(0, 0, 0, 0.07);
border-bottom: 2px solid rgba(0, 0, 0, 0.07);
box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
}
Then you should just be able to reduce the Separating Space
Hello, I removed the below CSS from the site and it worked well.
But there is one thing which I need.
On the woorkup site, there is one divider line between each post like this - https://prnt.sc/1essiih
I also want the same line between each post on my site.
Please tell me how I can achieve this.
Try this CSS:
.one-container.blog .post:not(:first-child) {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(0,0,0,.05);
}
Thanks, it worked. :)
Glad to hear that