Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

How to change Chart section width (Impact Theme)

Solved

How to change Chart section width (Impact Theme)

hanger
Shopify Partner
5 0 7

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!

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

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:

Made4uoRibe_0-1706644420063.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

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:

Made4uoRibe_0-1706644420063.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
hanger
Shopify Partner
5 0 7

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!!!