The space is coming from 2 different css ruls
.entry-content > .wp-block-group.alignwide.has-background, .entry-content > .wp-block-group.alignfull.has-background {
padding: 8rem 6rem;
margin-bottom: 0;
margin-top: 0;
}
.entry-content > .alignfull {
margin-bottom: 5rem;
margin-top: 10rem;
}
you can try adjust the padding on the first rule to something like padding:1rem 6rem. The first value is the padding on the top and bottom.
the second rule set a bottom margin of 5rem you can try decreasing it to see how it effects your code. Not that both of this are responsive so they may appear in different media queries. You will see statements like this in your code.
@media (min-width: 1220px)
To fix it at this point you would have to add the following rule to your custom css
@media (min-width: 1220px){
group.alignfull.has-background {
padding: 1rem 6rem;
}
.entry-content > .alignfull {
margin-bottom: 1rem;
}
}
this rule would only fix it for items that have min-width greater then 1220px. You need to determine the screen size you want to change to take place on and change that media query.
-
This reply was modified 4 years, 11 months ago by
mrtom414.
-
This reply was modified 4 years, 11 months ago by
mrtom414.