Making "Image with Text" section full width on Trade Theme

Solved

Making "Image with Text" section full width on Trade Theme

letsgetwasted
Explorer
60 1 11

I'm trying to make the "Image with Text" & "Multi-Row" section full width on Trade Theme, no matter what tweaks, there's still a padding on the left and right side of the theme. Please help!

 

Shopify URL: https://65a186-44.myshopify.com/

Password: meerew

Accepted Solution (1)

PageFly-Noah
Shopify Partner
1317 233 281

This is an accepted solution.

This is Noah from PageFly - Shopify Page Builder App

 

Hi @letsgetwasted  Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag </body>

 

<style>
.section-template--15251938967607__image_with_text_9w6Tfz-padding .page-width {
    max-width: 100% !important;
}
</style>

 

Hope my solution will help you resolve the issue.

 

Best regards,

Noah | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 7 (7)

mrashid
Shopify Partner
301 26 33

@letsgetwasted add code in base.css

 

.section-template--15251938967607__image_with_text_9w6Tfz-padding .page-width {
    max-width: 100% !important;
}

 

- Need a Shopify developer? Chat on WhatsApp +923068683199
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution

Made4uo-Ribe
Shopify Partner
10133 2404 3038

Hi @letsgetwasted 

Check this one. 

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:

 

.section-template--15251938967607__image_with_text_9w6Tfz-padding .page-width {
    max-width: 100%;
}

 

And save. 

Result:

Made4uoRibe_0-1718214035039.png

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.

PageFly-Noah
Shopify Partner
1317 233 281

This is an accepted solution.

This is Noah from PageFly - Shopify Page Builder App

 

Hi @letsgetwasted  Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag </body>

 

<style>
.section-template--15251938967607__image_with_text_9w6Tfz-padding .page-width {
    max-width: 100% !important;
}
</style>

 

Hope my solution will help you resolve the issue.

 

Best regards,

Noah | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

letsgetwasted
Explorer
60 1 11

Thank you, this solved it!

 

Is there a way to also change it for "Multi-Row" sections?

 

Under my "Project -> Retail" pages

letsgetwasted
Explorer
60 1 11

Hi, I realised this changes it for this specific section only. However, I'd like this code to apply for all "image with text" blocks, is this possible and how could I change the code please?

PageFly-Noah
Shopify Partner
1317 233 281

Hi @letsgetwasted  you can try this code. it will apply to the majority of sections. try it and please tell me if it affects the parts you don't want applied.

<style>
.page-width {
    max-width: 100% !important;
}
</style>

Thank you.

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

letsgetwasted
Explorer
60 1 11

Ack, sorry, this almost works but now the header and footer are also full width, which i don't want. is there a way to just keep it to the "image-with-text" components? it's ok if it's across the entire website that has image with text blocks.