i want to change widhth and location of description box

Topic summary

A user seeks to modify the width and location of a product description box on their Shopify store. Currently, the description appears as a tab within the product page category, but they want it displayed full-width below all product media and text, similar to a reference image they provided.

Key Requirements:

  • Move description box to open/expanded state by default
  • Display full-width across the page
  • Position below product images and text
  • Remove from product page category section when customized

Proposed Solutions:

  1. One responder suggests this requires code modifications and offers to help if given collaborator access to the theme
  2. Another provides specific instructions:
    • Remove the existing description block
    • Add custom liquid code to sections/main-product.liquid
    • Insert provided code snippet at the end of the <product-info> tag

Current Status:
The user attempted the liquid code solution but reported it’s “NOT WORKING” with a screenshot. The issue remains unresolved and may require further troubleshooting or professional developer assistance.

Summarized with AI on November 7. AI used: claude-sonnet-4-5-20250929.

i want to change location and widhth of my description box

URL: https://a6b804-0a.myshopify.com/products/nylon-16mm?variant=40372766343240

PASS: Redpanda

Description tab should be open like below screenshot

and also it should not in product page category when we customise it

right now its in product page category but i want it to be individual like media with text and all..

Hello @rgeafrauuhf

You need to change the code for that, and you have to set options for that to show it.

If you are able to make changes in code, it will be very easy. otherwise you need to take help of expert or experienced developer who can fix it.

If you want me to do it, then you need to provide me the collaborator code and access of your theme.

Hey @rgeafrauuhf

You need to give up using this description block if you would like a full width description.

But you can achieve your needs by add some customization liquid code following below steps.

  1. Open sections/main-product.liquid file

  2. Paste below code at the end of tag

{%- if product.description != blank -%}
                  
                    {{ product.description }}
                  

                {%- endif -%}
  1. Pls refer to this image

Hope this helps

NOT WORKING