Site logo

Archived topic

grid padding left right issue

3 replies · Started by jasond on October 1, 2019

Viewing posts 1–4 of 4

Can you advise how i can get rid the padding-left of first grid-50 section and the padding-right of the second grid? So the 2 images can be aligned correctly with the top slider (regarding left/right padding). I tried grid-parent but no luck. Thanks in advanced

the slider
<img2>
<img3>

Hi there,

if you want to keep the inner column gap then try this CSS:

.grid-remove-outer-padding>div:first-child {
    padding-left: 0;
}

.grid-remove-outer-padding>div:last-child {
    padding-right: 0;
}

@media (max-width: 1024px) {
    .grid-remove-outer-padding>div {
        padding-left: 0;
        padding-right: 0;
    }
}

And give the container the additional class of: grid-remove-outer-padding

amazing, thanks so much David

You're welcome

This archived topic is closed to new replies.