Hi I’ve tried to adjust margins and widths of pages sections but didn’t find out.
here is my website https://mexajewelry.com/pages/acerca-de-nosotros
I manage to justify the text but would like to look more centered
thank you in advance
A user sought help adjusting the margins and width of their Shopify store’s page sections to match the appearance of their policy templates, while keeping text centered.
Initial Attempt:
Solution Provided:
A community member offered CSS code to be added to the theme’s stylesheet (base.css/style.css/theme.css):
.page-width--narrow to 70% width using the --page-width variable.rte classOutcome:
The CSS solution worked perfectly, achieving the desired layout consistency with policy pages. The issue was resolved through theme code customization rather than built-in theme settings.
Hi I’ve tried to adjust margins and widths of pages sections but didn’t find out.
here is my website https://mexajewelry.com/pages/acerca-de-nosotros
I manage to justify the text but would like to look more centered
thank you in advance
Hi @MXJEWELRY ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css file Add the provided code at the end of the file.
body.page-acerca-de-nosotros .rte div,
body.page-acerca-de-nosotros .rte h2,
body.page-acerca-de-nosotros .rte h3,
body.page-acerca-de-nosotros .rte h4,
body.page-acerca-de-nosotros .rte h5,
body.page-acerca-de-nosotros .rte h6,
body.page-acerca-de-nosotros .rte p,
body.page-acerca-de-nosotros .rte a,
body.page-acerca-de-nosotros .rte ul {
text-align: center !important;
}
Hi thank you for your answer I guess I didn’t explain myself good, I was trying the page section look the same size as the policies templates
hwre I add a picture
thank you in advance for your help
Hi @MXJEWELRY
Try this one.
.shopify-section.section .page-width--narrow {
max-width: var(--page-width);
width: 70%;
}
.shopify-section.section .page-width--narrow .rte * {
text-align: justify;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Amazing thank you so much for your help! Worked perfectly