Alignment logo last column doesn't fit on mobile

Hi there, I have created a section with 3 rows and 4 columns (with logos).
I have a problem with the last logo (number 12) only on a mobile device, please check my printscreen.

How do I get this straight? Thank you in advance.

Hi there,

That is caused by the -20 top margin of the last image element.

To solve that, please add this to the image’s Element CSS:

@media(max-width: 767px) {
    $el.x-image {
        margin-top: 0px !important;
    }
}

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.