Spacing between content blocks


(Cloe Blanchet) #1

Matrix Version: 5,5
How do I add spacing between content blocks?
I am used to working in wordpress with elementor / similar and I am not a coder.
There does not seem to be a spacer element.
If I have to use CSS please type exactly what I need to paste in the CSS as I am used to drag and drop easy systems.

Kind regards

Cloe


(Matthew Rigby) #2

Not sure whether you’ve already found a solution, and I mostly work from a code side of things so i;m not sure if there is a way to achieve this with the simple edit interface but you could do this by getting the ID of the container you wish to add spacing to (You can get the ID by clicking the little settings icon on the content block) and adding

#ID of your container {
    margin-bottom:100px;
}

to the CSS.

So for example If you want spacing at the bottom:
#content_container_113065 {
margin-bottom:100px;
}
Or if you want the spacing at the top:
#content_container_113065 {
margin-bottom:100px;
}