How can I align logos and reduce spacing on my brands page?

Hello there ,

Is there any way to make the logo on my brands page to be left aligned , with reducing the spacing between each brand logo. Please any idea will be helpful.

@Anonymous Go to Assetes/base.css and paste the below CSS at the bottom of the file.

.brands-container
{
width: 30% !important;
}
1 Like

Hey @Anonymous

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @Anonymous

Follow these Steps:
Go to Online Store Edit Code Find theme.liquid file or base.css
Add the following code in the bottom of the file above tag

.brand-logo {
    justify-content: flex-start;
    max-width: 10%;
}

If I managed to help you then, don’t forget to Like it and Mark it as Solutions

1 Like