There are a few items left out.
When editing the row, click on the cell you are working with. A new panel appears called Cell Styles, check the Layout tab in that section.
Edit the SiteOrigin Editor widget, there is a setting in the bottom left that automatically adds paragraphs, disable it to remove the paragraph around the image.
While editing the SiteOrigin Editor widget, click Layout on the right within the widget, there is another set of spacing settings there. Check those.
Alternatively, to workaround this, edit the row, click Attributes on the right and insert a custom row class name in the field called “Row Class”.
adaptive-spacing
Then, go to Customize > Additional CSS and insert a rule to target that class name:
@media (max-width: 768px) {
.adaptive-spacing img {
display: block;
margin-bottom: -40px;
}
}
Adjust the negative margin as required.