A user encountered styling issues when enabling collection descriptions in their Shopify store using the Dawn theme. The problem manifested in two ways: the collection title changed to green, and the website appeared cropped around the edges.
Root Cause Identified:
The h1 and h2 headers were styled with a green color. When the collection description was added, it became a header element and inherited this green styling.
Initial Solution Provided:
A CSS fix was suggested to override the color:
h1.collection-hero__title {
color: #000;
}
This resolved the title color but similar issues persisted in the footer, and the cropping problem remained.
Final Resolution:
The user discovered that problematic HTML code within the collection description itself was causing both issues. Cleaning up this HTML code resolved all styling problems. The issue persisted across different themes (Dawn and Craft), confirming the collection description HTML was the source rather than theme-specific code.
Summarized with AI on November 1.
AI used: claude-sonnet-4-5-20250929.
I want to start using collection descriptions for SEO purposes. When I toggle “Show collection description” it changes the color of my collection title and sort of crops the edges of the entire website?
Can anyone help with this? We are using the Dawn theme
I have tried showing my issue in the pictures. (Before on the left vs after on the right)
Thanks for the info, your h1 and h2 header was set the color of green
So when you add the description it become the header so it color green.
Possible if you add some h1 and h2 in your store it will be also color green. Check this one to change the color.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code: