Studio theme - now i have 1 inch gap in both left and right sides of my website,is it possible to keep my website to full screen without gaps? - Adameda.com - my website
Studio theme - now i have 1 inch gap in both left and right sides of my website,is it possible to ke
Topic summary
Main issue: The Studio theme displays ~1-inch margins on both sides of the site, and the poster wants a full-width (edge-to-edge) layout.
Proposed solution: Add a CSS override in the theme files.
- Path: Online Store > Theme > Edit code > Assets > base.css.
- Insert: .page-width-desktop { max-width: unset !important; }
What it does: This removes the theme’s desktop max-width constraint so content can span the full browser width.
Notes: A code snippet is central to the fix. No other layout settings or apps were mentioned.
Status: The solution is suggested but not yet confirmed by the original poster; outcome remains unverified and the discussion appears open.
Hi @Aadhiss ,
This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:
.page-width-desktop {
max-width: unset !important;
}
Hope my answer will help you.