Increase width of the page in Brooklyn theme

I want to increase the width of the page, currently as you can see in the image there is a lot of white-space on both the sides. I want it for both the mobile and desktop layout.

Same is the issue with collection page too on both mobile and desktop.

https://aishwaryasuri.com/

password - hellothere

Please help

2 Likes

Hi @AishwaryaSuri

You can adjust the width of your wrapper.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the timber.css
  3. Paste the code below at the very bottom of the file.

NOTE: Adjust the 1600px to the size of choice

#CollectionSection .wrapper {
    max-width: 1600px;
}
1 Like