Logo List Section - Need 3 in each row on mobile

Solved

Logo List Section - Need 3 in each row on mobile

highvibecollect
Shopify Partner
11 0 3

Hey there!

 

I need CSS to create 3 logos in a row on the mobile version. Can someone help me write the code for the first section titled "Additional Pattern Options - Flowers"? Once I get the first code, I should be able to do the rest of them! 

 

https://calliopequilts.com/products/test-product

 

Thank you so much!

Accepted Solution (1)

Moeed
Shopify Partner
6619 1789 2173

This is an accepted solution.

Hey @highvibecollect 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find password.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.logo-list__logo {
    flex: 0 0 calc(33% - 40px) !important;
}
}
</style>

RESULT:

Moeed_0-1736088775911.png

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 6 (6)

Moeed
Shopify Partner
6619 1789 2173

This is an accepted solution.

Hey @highvibecollect 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find password.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.logo-list__logo {
    flex: 0 0 calc(33% - 40px) !important;
}
}
</style>

RESULT:

Moeed_0-1736088775911.png

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


highvibecollect
Shopify Partner
11 0 3

Thank you SO MUCH!

highvibecollect
Shopify Partner
11 0 3

Is there a way to change the amount of space between the rows and columns?

suyash1
Shopify Partner
10502 1293 1657

@highvibecollect please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

@media screen and (max-width:749px){
.logo-list__logo {flex: 0 0 calc(33.33% - 40px) !important;}
}
Support me | To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

devcoders
Shopify Partner
822 103 208

Hello @highvibecollect 

Go to Online Store, then Theme, and select Edit Code.
Search for assets/main.css Add the provided code at the end of the file.

 

@media screen and (max-width: 767px) {
.logo-list__logo {
flex: 0 0 calc(33% - 40px) !important;
}
}

 

Shopify Developer: Helping eCommerce Stores

If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
highvibecollect
Shopify Partner
11 0 3

Is there a way to change the amount of space between the rows and columns?