How to make the gapping 0 between images in mobile

Hi,

How to make the o gapping between images in mobile.

URL - https://www.portronics.com/collections/new-arrivals/products/portronics-dash

1 Like

@Shivam97

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (max-width:768px){
#shopify-section-single-product-tab .paragraph, p {
    margin: -9px;
}

#shopify-section-single-product-tab .rte ol, #shopify-section-single-product-tab .rte p, #shopify-section-single-product-tab .rte table, #shopify-section-single-product-tab .rte ul {
    margin-bottom: 0px;
}

.collapsible-content__inner.rte br {
    display: none !important;
}

}

Hope this helps.

Thanks!

1 Like