Wondering how I can align the text in first section with the rest of the page…
Site:
https://guisemen.com/pages/about
Thank you in advance for your guidance.
A user seeks to align the width of a “Page” section with “Rich Text” sections in the Dawn theme.
Solution provided:
layout >> theme.liquid file, placed above the </body> tag.page-width.page-width--narrow class, setting max-width to 87rem with 5rem padding on left and right.rich-text__wrapper--center to use 77rem max-width and flex-start justificationOutcome:
The solution successfully resolved the alignment issue, with the original poster confirming it worked.
Wondering how I can align the text in first section with the rest of the page…
Site:
https://guisemen.com/pages/about
Thank you in advance for your guidance.
Hello,
Please paste the given code above
layout >> theme.liquid
.page-width.page-width--narrow { max-width: 87rem!important; padding-left: 5rem; padding-right: 5rem; } .isolate.page-width .rich-text__wrapper.rich-text__wrapper--center { justify-content: flex-start!important; max-width: 77rem!important; }after paste the code looks
Amazing! Thank you so much for your help!