There's a very annoying chunk of space between webparts such as promoted link and a content editor, and I'd like to remove it. I tried some css found on the web, but that didn't solve it. Does anyone know how to remove this annoying space?
Thanks in advance.
Tried already in a Content Editor Web Part:
<style type="text/css">
.ms-PartSpacingVertical
{
margin-
}
.ms-PartSpacingHorizontal
{
width: 0px;
}
#_invisibleIfEmpty {
padding: 0px;
}
</style>
or
<style type="text/css">
.ms-webpartPage-root {
border-spacing: 0px !important;
}
.ms-webpartzone-cell {
margin: 0px !important;
}
</style>
The second works, but only for the webpart where the code is inserted, in this case the Content Editor. For example, there are apps like Promoted Links where doesn't have anywhere, where you can insert code.
Thank you.
Picture of class:
