How to reduce the top and bottom margin in each container in the brands page

Hello There ,

Is there any way to reduce the margins both top and bottom only a little bit in the container of the brands page ,

any idea would be helpful.

SITE URL :: https://laadlee.com/pages/our-brands

Hi @Anonymous

Please add this CSS code to bottom of your base.css file

.alphabet-container { padding: 0px !important; }
.container-divider { margin: 5px 0 !important; }

Hello @Anonymous :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.brand-logos-container {
    line-height: 1;
}

.brand-logos-container + .container-divider {
    margin: 0;
}

The result

Hope that helps!