issue: how to make rich text full page width
theme: sense
A user seeks to make the rich text section span full page width in Shopify’s Sense theme.
Two solutions were provided:
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.
Made4uo-Ribe’s CSS solution:
@media screen and (min-width: 990px) {
.rich-text__blocks {
max-width: 100% !important;
}
}
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.
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
Hi @rzwahmed
Check this one.
@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!