How can I set rich text to full page width on the Sense theme?

Topic summary

A user seeks to make the rich text section span full page width in Shopify’s Sense theme.

Two solutions were provided:

  1. PageFly-Theodor’s approach: Add custom code to the theme.liquid file via Online Store → Theme → Edit code. The specific code snippet appears corrupted in the original post.

  2. Made4uo-Ribe’s CSS solution:

    • Navigate to Online Store → Themes → Actions → Edit code
    • Open the Assets folder and locate base.css, style.css, or theme.css
    • Add the following CSS at the bottom:
    @media screen and (min-width: 990px) {
      .rich-text__blocks {
        max-width: 100% !important;
      }
    }
    
    • Save the changes

Both responses include screenshots demonstrating the implementation. The CSS method targets screens wider than 990px and forces the rich text container to 100% width. The discussion remains open with no confirmation of which solution worked.

Summarized with AI on November 14. AI used: claude-sonnet-4-5-20250929.


issue: how to make rich text full page width

theme: sense

URL: https://theaairascloset.com/

2 Likes

Hi @rzwahmed ,
This is Theodore from PageFly - Shopify Page Builder App.
For solving the problem about the Rich Text Full Page Width | Sense Theme, let’s try this solution:

Online Store ->Theme ->Edit code->theme.liquid


I’ll be so happy if my suggestion can help to solve your problem. If you have any further questions, please feel free to tell me.
Best regards,
Theodore | PageFly

1 Like

Hi @rzwahmed

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:
@media screen and (min-width: 990px){
.rich-text__blocks {
    max-width: 100% !important;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

3 Likes