How to make ‘Image with Text’ section full width in Sense theme?

How can I make the ‘Image with text’ section full-width in the Sense theme, without affecting the global page width?”

Try this code in this section “Custom CSS” setting:

.page-width {
  --page-width: none;
  padding: 0;
}

I tried it, it didn’t work

can you please share the link of your store i can help you

Share a link to the page where you’ve tried it?

Hey @Imane21000

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

Best Regards,
Moeed

Hi @Imane21000

Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.

Best regards,
Devcoder :laptop:

Hi @Imane21000

Based on your screenshot, you want the “Image with text” section to be full-width on mobile.

To do this, add the following CSS at the end of the file component-image-with-text.css

@media screen and (max-width: 749px) {
  .page-width {
    padding: 0;
  }
}

This will remove the side spacing on mobile and make the section stretch full width.

Thank You