New Shopify Certification now available: Liquid Storefronts for Theme Developers

Margin Section "Logo List" theme Enterprise

Solved
Evaelle
Tourist
11 0 1

Hi!

 

I use the Enterprise theme for my online store.

On my homepage I used a "Logo List" section where I put 3 Icon with text. On computers everything is fine the 3 elements are well centered but regarding the phone, I do not like the layout of the logos. I would like to put the third, which goes below left, in the middle so that it is more coherent visually. Without it changing the aspect on the computer that suits me.

 

If you have the solution, I’d be happy to hear it. I think it’s a margin issue.

 

Thank you in advance!Capture d’écran 2023-11-13 à 13.03.41.png

 

IMG_8207.PNG

 

Accepted Solution (1)
theycallmemakka
Shopify Partner
993 201 213

This is an accepted solution.

Hi @Evaelle ,,

 

 

Follow these Steps:

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

4) Add the following code just above </body> tag

<style>
@media only screen and (max-width: 907px) {
#section-template--21185269662037__97e28fdf-458d-40d6-8511-9c7b119c3efb ul.logo-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#section-template--21185269662037__97e28fdf-458d-40d6-8511-9c7b119c3efb ul.logo-list li {
    width: 48%;
}
}
</style>

 

makkaomakka_0-1699879073419.png

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

View solution in original post

Replies 2 (2)
theycallmemakka
Shopify Partner
993 201 213

This is an accepted solution.

Hi @Evaelle ,,

 

 

Follow these Steps:

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

4) Add the following code just above </body> tag

<style>
@media only screen and (max-width: 907px) {
#section-template--21185269662037__97e28fdf-458d-40d6-8511-9c7b119c3efb ul.logo-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#section-template--21185269662037__97e28fdf-458d-40d6-8511-9c7b119c3efb ul.logo-list li {
    width: 48%;
}
}
</style>

 

makkaomakka_0-1699879073419.png

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Makka

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Evaelle
Tourist
11 0 1

Thank You !