Your cart is currently empty!
Stretch SayPro Header to be 90%

Written by
in
To make the header width 90% in the Twenty Twenty-Five theme (which uses Full Site Editing), follow these steps:
🛠️ Method 1: Using the Site Editor (Block Width Settings)
- Go to
Appearance → Editor
. - Click on the Header area (or use the “Template Parts” to open the Header).
- Click on the Group block or Container block that holds your header elements.
- In the right-hand block settings panel, scroll to the Dimensions section.
- Adjust the “Width”:
- Set it to 90% (type
90%
directly in the width field).
- Set it to 90% (type
- Click “Save” in the top right to apply changes.
🛠️ Method 2: Custom CSS (if needed)
If the block settings don’t allow percentage-based widths or don’t affect the layout as expected:
- Go to
Appearance → Customize → Additional CSS
. - Add this CSS:
header { width: 90%; margin: 0 auto; }
- Click Publish.
⚠️ Note: You might need to target a specific class like
.wp-site-header
or a group block class if the above doesn’t take effect.
Would you like help identifying the exact class name from your site to target in CSS?