Your cart is currently empty!
Stretch the 15 SayPro Templates to 80%

Written by
in
To make your WordPress templates 80% wide in the Twenty Twenty-Five theme (which uses Full Site Editing), you’ll typically adjust the Group block or overall layout container inside each template.
Here’s how to set templates to 80% width visually in the Site Editor:
🛠️ Set Template Width to 80% in Site Editor
- Go to:
Appearance → Editor - Click the “Templates” tab (left sidebar)
→ Choose the template you want to adjust (e.g. Page, Single, Home) - Find the main Group block that wraps your content:
- Usually labeled something like “Group” or “Main”.
- Click it, and in the right sidebar, under Dimensions → Width:
- Set the width to
80%
- Optionally add
margin: 0 auto
(or use the Align center option) to center it.
- Set the width to
- Click Save.
🧾 Alternative (Using Custom CSS – Optional)
If block settings don’t give enough control, you can apply this CSS:
- Go to Appearance → Customize → Additional CSS
- Add:
.wp-site-blocks > * { max-width: 80%; margin-left: auto; margin-right: auto; }
- Click Publish
Would you like this applied only to specific templates like Blog posts or the Home page?