I want to change my font color for my product description on my shopify store.
Topic summary
A user seeks to change the font color of product descriptions in their Shopify store using the Dawn theme.
Proposed Solution:
- Add custom CSS code to modify the description text color
- Navigate to: Online Store → Theme → Edit Code → Assets → base.css
- Insert CSS targeting the product description element with
color: red !important;
The response provides a basic CSS implementation, though the code snippet appears partially corrupted in the original post. The solution follows standard Shopify theme customization practices by editing the base stylesheet.
Hello @cinamon123
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
.rte ul {
color: red !important;
}