Add padding to sides of image

Hi,

I wanted to add padding to sides of these images on grid. For mobile only- my site is: https://vazluxe.com

Hi @Luxurymrkt
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

@media (max-width: 749px) {
    .grid.section.section--divider-none.section--vertical-padding-top-bottom {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
}

Result

Best,

DaisyVo