- This topic has 5 replies, 2 voices, and was last updated 4 years, 4 months ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Extra space on blog post page
Hello,
I’ve just updated to Epik 1.5 and I have extra space above each blog post title.
https://www.gbpersonaltraining.com/blog/
Can you help me remove this please?
Many thanks, Greg
Hi Greg,
If you look in your style.css file around line 2624 you’ll see this –
/* ## Entries
-------------------------------------------- */
.entry {
margin-bottom: 100px;
padding: 0;
}
You can adjust the margin-bottom
and it will reduce some of that space.
Let me know if that helps.
It worked beautifully, thanks Wes.
One last thing, I also used to have a white box around the blog posts as you can see here:
https://kettlebellsworkouts.com/blog/
Is it possible to replace that too?
Thanks again for a great theme.
If you want to add the white background back in here – https://www.gbpersonaltraining.com/blog/ add this to the code I posted above –
.entry {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 3px 6px rgba(0,0,0, .2);
background: #fff;
margin: 0 3px 40px;
padding: 40px 20px 0;
}
This will add a white background just like you have on the other site.
You can remove the box-shadow lines if you don’t need them.
Let me know if that helps, or if you’re referring to something different.
That worked a treat, thanks Wes.