How can change the multicolumn width? Sense Theme

Hi,

I’m new to shopify and I’m struggling to get the multicolumn to match the sections above and below.

It did start the full width of the page, but now I’ve set it to left somehow and can’t get it back how it was.

I just need it back to the centre then reduce it’s width.

If anyone can help it would be appreciated.

Hi @Certa

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

Hi thanks for your reply.

It’s https://c52db4-4.myshopify.com/

p/w chiwao

Thanks

Hi @Certa

Thank you for providing the information. The said issue is due to the added code. Please follow the instructions to fix this.

  • 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 very bottom of the file, please delete the highlight code below, and then SAVE
#shopify-section-template--19926961258833__a5e9087d-4a4b-4e84-81a3-790cb46dde6d {
  padding: 20% all;
     max-width: 80% !important;
}

See image as reference.

Hi,

Thanks for helping me get it central :slightly_smiling_face:

I just need to narrow the gold on each side as it’s back to it’s full width on the page. I want the same size as the section above and below if possible ?

Thanks

Yes it is. Please follow the instructions below

  • 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 very bottom of the file, please add the code below, and then SAVE
.page-width.section-template--19926961258833__a5e9087d-4a4b-4e84-81a3-790cb46dde6d-padding.isolate.scroll-trigger.animate--slide-in {
    max-width: calc(var(--page-width) - 100px);
    background: var(--gradient-background);
    background-attachment: fixed;
}

.multicolumn.color-scheme-f25c7f13-b11f-4212-bd95-9a0caf040e1a.gradient.background-primary.no-heading {
    background: unset;
    background-attachment: unset;
    display: flex;
    justify-content: center;
    margin: 0 50px;
}

Result:

You’re amazing!!

Thanks so much :slightly_smiling_face: