Topic summary
A user seeks to change the heading color in their product descriptions on their Shopify store.
Two solutions provided:
- Navigate to Shopify Admin → Online Store → Themes → Actions → Edit code
- Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add custom CSS code at the bottom of the file
Recommended CSS snippet:
.product__description h1 {
color: #desired-color;
}
Both respondents suggest modifying the .product__description h1 selector and adjusting the color value as needed. Users are reminded to save changes after implementation and mark helpful responses as solutions.
1 Like
Hi @Simon159
Check this one.
- 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:
.product__description.rte.quick-add-hidden h1 {
color: deeppink;
}
- And Save.
- Note: You can change the color you like.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hello @Simon159 ![]()
Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
.product__description h1 {
color: #FF0000;
}
Make sure to change color values as you need.
Hope that helps.
