Why are my pages so narrow?

In some cases, the page.studio template inherits your theme's code that wraps around the content of a page. This can make pages narrower than the rest of your site, causing issues with the way blocks display.

Follow the steps below if you'd like your page.studio template to stretch the full width of your theme.

1. Starting from your Shopify dashboard, click on Online Store, then click on Themes.

2. Find the theme you want to edit, click the Actions button, then click Edit code.

3. On the left side, under the Templates heading, locate the page.studio.liquid file.

4. Replace all the code within the page.studio.liquid file with the following snippet.

<link href="//studios.cdn.theshoppad.net/pagestudio/blocks.css?v={{ page.metafields.global.version | default: 3 }}&shop={{ shop.permanent_domain }}" rel="stylesheet" type="text/css"/>
<script src="//studios.cdn.theshoppad.net/pagestudio/pagestudio.dist.js?v={{ page.metafields.global.version | default: 3 }}"></script>
<div class="studioengine">{{ page.content }}</div>

5. Save your changes.