Can anyone help, I am trying to remove the margins left and right of the rich text section at the bottom of my website homepage www.stylecentral.co.uk. I have added a image below to show what it looks like. Does anyone have any ideas how to do this.
Topic summary
A user is trying to remove the left and right margins from a rich text section at the bottom of their website homepage. They’ve shared an image showing the current appearance.
Proposed Solution:
- Another user suggests adding specific CSS code to the end of the base.css file
- The CSS targets only that particular section using media queries
- The code appears to set maximum width to 100% for screens wider than 750px
Status: The discussion remains open, awaiting confirmation on whether the CSS solution resolves the margin issue.
@paule3 - add this css to the very end of your base.css file and check, it is for this section only
@media screen and (min-width: 750px){
#shopify-section-template--15704171118758__f8e1a1fe-ce0a-4e76-8db0-54b1bc9ae593 .page-width{max-width: 100%;}
}