Hi there,
It’s not because of the gap shortcode, but the <p></p> that wraps your image. You can remove the linebreaks between image and your text like this
<img>
Text here
to this
<img> Text here
Or, add this CSS,
@media ( min-width: 980px ) {
.x-text p:first-child {
margin: 0px !important;
}
}
Hope this helps.