How can I make my entire website full width regardless of zoom?

Hi all

I’m looking for a way to make my site full width, regardless of the zoom settings.

Does anyone have suggestions?

https://lanisimpson.com/

Theme: Turbo, by Out of the Sandbox

Hi @DrLani ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code
  2. Assets/style.css
  3. add code below to end of file
body .section {
max-width: none;
width: 100%;
}

Hi @DrLani

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Styles.css

.section {
    max-width: initial !important;
    width: 100% !important;
}

Hope you find my answer helpful!
Best regards,
Richard | PageFly

H! This worked, BUT do you have a suggestion to make sure there is a bit of padding on the edges? The left side is totally smashed against the edge of the window.

Thanks a million :slightly_smiling_face:

you can try this code

.section {
    max-width: initial !important;
    width: 95% !important;
}