How to change the margins of "pages"

Basically, the margins (for the pages) look like this:

However, I want the margins to look like this:

How can I make this happen?

Shopify theme: Ride

URL: wigmadcosplay.com (password: yellow)

Hi @laserbeampq ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin β†’ Online Store ->Theme β†’ Edit code

Step 2: Search file base.css or theme.css

Step 3: Insert the below code at the bottom of the file β†’ Save

@media only screen and (min-width: 990px) {
   .page-width--narrow {
      max-width: 110.6rem !important;
   }
}

Final Result:

Hope it helps you

Kind regards,

HDL-Shin

1 Like

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag


Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!