How to center products on mobile view in Dawn theme?

Solved

How to center products on mobile view in Dawn theme?

ErnestoF
Excursionist
44 1 9

Hey, I have a problem with displaying the view of all products, the products are not centered. Anybody have an idea how to fix it? Dawn theme

https://chromemaster.eu/collections/all

Accepted Solution (1)

PageFly-Richard
Shopify Partner
4852 1091 1763

This is an accepted solution.

Hi @ErnestoF 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

{%if template contains 'collection'%}
<style>
.card.card--standard.card--media {
padding-left:0 !important;
}
</style>

{% endif %}

PageFlyRichard_0-1711525106791.png

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 2 (2)

PageFly-Richard
Shopify Partner
4852 1091 1763

This is an accepted solution.

Hi @ErnestoF 

 

This is Richard from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

{%if template contains 'collection'%}
<style>
.card.card--standard.card--media {
padding-left:0 !important;
}
</style>

{% endif %}

PageFlyRichard_0-1711525106791.png

 

Hope this can help you solve the issue 

 

Best regards,

Richard | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 


All features are available from Free plan. Live Chat Support is available 24/7.

ErnestoF
Excursionist
44 1 9

Thank you! 🙂