Product Description Not Showing On Product Pages (Dawn Theme)

Topic summary

A user reported that product descriptions weren’t displaying on their Dawn theme product pages despite being added and enabled in theme customization.

Solutions Provided:

  1. CSS Override Method (Accepted Solution): Add custom CSS to theme.liquid file before the </body> tag:

    .product .product__description {
      display: block !important;
    }
    
  2. Alternative CSS Method: Add similar CSS code to the section-main-product.css file in the assets folder.

  3. Theme Customizer Approach: Navigate to Online Store → Themes → Customize, select the default product, then manually add and position the description block from the left sidebar.

The issue appears to stem from the description element being hidden via CSS. The user confirmed the first solution worked. A follow-up question was asked about locating the </body> tag in theme.liquid, but remains unanswered.

Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

Hey, for some reason my product descriptions are not appearing on my product pages even though I have added the “Description” and enabled it from theme customization. Is there a way to fix this? Thanks!

My store url: https://thebombshellblowouts.com/products/bombshell-velvet-rod-set-of-3

Hello @blwouts

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product .product__description { display: block !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Perfect, thank you Niraj!

1 Like

Hello @blwouts

Go to online store ----> themes ----> actions ----> edit code ---->assets ---->section-main-product.css
add this code at the end of the file.

.product__description {
display: block !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hello @blwouts ,

Go to Online Store → Themes → Customize. Then select the default product, and on the left side of the screen, add a block, select the description, and drag and drop it to the desired position.

Where is body I can’t find it

In theme.liquid