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
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
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; }
Try this one.
.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!
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!