XF 2.1 how to make them closer

how do I make them a closer set of others like a big giant space between them
Try
Appearance > Styles> Style properties> Borders and Spacing

Then scroll down, take a look at: "Element Spacer." Default value is 20px try 5 and see the change, then keep adjusting until you get what you want. Keep in mind it's a global setting, for that style only.
 
Last edited:
Search for Mediumpadding and/or vertical and change it in admin cp, could maybe solve it.
Try
Appearance > Styles> Style properties> Borders and Spacing

Then scroll down, take a look at: "Element Spacer." Default value is 20px try 5 and see the change, then keep adjusting until you get what you want. Keep in mind it's a global setting, for that style only.
that helped a little but that's not what I wanted. I just want that to happen just for that "What's Going On?" everything underneath it to be closed just those. those are my widgets

196548
 
Last edited:
o.k. sorry, I thought these widgets were actually your sidebar (on a small device -> responsive) - did not see the cut off sidebar on the right.

Anyway, post the source code of your whole page.
 
not sure what you really want, but one of these (or both) may work for you:

margin below "What's going on?":
CSS:
.block.block--category.block--category53 {
    margin-bottom: 5px;
}
margin below each widget:
CSS:
.porta-forumlist-below-split.porta-widgets-split ~ .block {
    margin-bottom: 5px;
}
 
not sure what you really want, but one of these (or both) may work for you:

margin below "What's going on?":
CSS:
.block.block--category.block--category53 {
    margin-bottom: 5px;
}
margin below each widget:
CSS:
.porta-forumlist-below-split.porta-widgets-split ~ .block {
    margin-bottom: 5px;
}
It does not look to bad
 
Top Bottom