Make multi-column full width on specific pages

Hello!

How can I make the multi-column section full width on a specific entire page, so these images go right to the edge ?

https://www.wastd.world/products/multi-purpose-serving-platter

Hi @letsgetwasted

I hope you are well. You can follow our instructions below:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
Step 3: Copy the code below and paste it there

Here is the code for Step 3:

.multicolumn .page-width {
   max-width: unset !important;
}

Please let me know if it works. Thank you!

Best,

Daisy - Avada Support Team.

Please add this code below into Custom CSS in Online Store > Themes > Customize > Theme settings

#shopify-section-template--15630316666935__multicolumn_nYQ7PX .page-width { max-width: 100% !important; }

Hi @letsgetwasted

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
.page-width.section-template--15630316666935__multicolumn_nYQ7PX-padding {
    max-width: 100% !important;
}​

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Thanks for this! this fixes it on desktop, but on mobile, it is still not full width. how can i get it full wid th on mobile as well?

Thanks for this! It’s fixed it on desktop, but on mobile it is not full width yet. How can I change it for mobile too please?

Yes, sure add this code.

@media screen and (max-width: 749px) {
    .section-template--15630316666935__multicolumn_nYQ7PX-padding .multicolumn-list:not(.slider) {
        padding-left: 0;
        padding-right: 0;
    }
}

And Save.

Result:

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!