A space to discuss online store customization, theme development, and Liquid templating.
Hi,
Need some help on how to change the width of the feature-chart section on the bottom of this page.
https://enermaxusa.com/products/liqmaxiii-sf-360mm
Change the width of the chart like on the bottom of this page:
https://www.azza.gg/products/azza-cube-360
There's nothing in the theme setting that allows me to change the width.
Any help is appreciated! Thank you!
Solved! Go to the solution
This is an accepted solution.
Hi @hanger
This chart is an app? if it is, it might not listen to the css code ill give but you can try.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 700px){
#shopify-section-template--17398334914780__9f7aaec2-14d9-4347-9b91-5ce9c221def7 .section-stack__main {
width: 80% !important;
}
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @hanger
This chart is an app? if it is, it might not listen to the css code ill give but you can try.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (min-width: 700px){
#shopify-section-template--17398334914780__9f7aaec2-14d9-4347-9b91-5ce9c221def7 .section-stack__main {
width: 80% !important;
}
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
The chart is actually a section built into the Impact theme.
However the solution you provided worked!
Thank you so much for the quick reply!!!