By Jennifer Gress on Monday, 19 May 2014
Posted in Technical Issues
Replies 3
Likes 0
Views 756
Votes 0
Hello!

I was wondering how I might remove the extra spacing between posts in the Latest Blog Post module.

I thought it was:

.ezb-mod .mod-item + .mod-item {
margin: -30px 0 0 !important;
}


I added that to my templates custom css file but it doesn't work. I don't really want to change it in the extension - looks like it pulls from the component as opposed to the module (is that right?)

Anyways, all they want is the post - no author or anything else but the space doesn't "move up" when those are not published.

Will you please help me with the CSS required to close up that unnecessary space?

Added URL below in the URL tab.

Thank you so much in advance!
jenn
Hello Jenn,

I am really sorry for the delay of this reply as it is a weekend for us here. No worries and this is what css is all about You can just add the css codes below into your template's css file,


body .ezb-mod .mod-item + .mod-item {
margin: 0 !important;
}


This would reset the margin of these items without interfering with the component files
·
Monday, 19 May 2014 02:11
·
0 Likes
·
0 Votes
·
0 Comments
·
HI MARK!!!!

LOVE YOU! Thank you so much! I was missing the word "body." I had a feeling it was one word I was missing. I drive myself crazy.

It works perfectly now!

I'm so grateful you are here for me. Thank you soooooooooooooooooooooo much!!

jenn
·
Monday, 19 May 2014 03:22
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jennifer,

You're welcome.
·
Monday, 19 May 2014 12:23
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post