Prestige - Product Page Section Width too Long

Hi,

I am trying to update the section width on my product page on prestige theme to be more condensed and not so The only options I get is Large, X Large and Full Width.

Hi @bondrish

What specific span do you want? Please share your store url

Hi @bondrish

In order to fulfill your request, please follow these steps
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above

{% style %}
{% if template.name == "product" %}
main#main {
    max-width: 1200px !important;
    margin-inline: auto !important;
}
{% endif %}
{% endstyle %}

Here is the result:

I hope this helps

Hi,

This seemed to work nicely for what I was looking for. However, now the footer condensed where I want to keep that like the rest of the site full width. https://pizzaovensource.com/products/genius-wood-fired-pizza-oven

Hi @bondrish

Please add this code instead

{% style %}
{% if template.name == "product" %}
main#main > section {
    max-width: 1200px !important;
    margin-inline: auto !important;
}
{% endif %}
{% endstyle %}

Here is the result:

I hope this helps

Best,

Daisy

Yes! Thank you so much I really appreciate the help here :slightly_smiling_face:

Hi Daisy,

Having some issues with my site was hoping you can help.

Footer seems to be condensed on product pages, any way to fix this?