How to change the color of the product name that when I click to select options it’s showing the product name color blue, i want to make it black,
here my store link: https://b6448a-44.myshopify.com/
Goal: change the product title that turns blue when selecting options to black.
Context: A store link and a screenshot were provided to show the blue product name state. The issue appears to be CSS styling of the product title (possibly a link state) in the product section.
Proposed solutions (CSS):
Notes:
Status: No confirmation from the original poster; resolution not yet verified.
How to change the color of the product name that when I click to select options it’s showing the product name color blue, i want to make it black,
here my store link: https://b6448a-44.myshopify.com/
Add This css in your edit code > base.css file
.product .product__title h2 {
color: #000;
}
Hello @ai41
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @ai41
.product__title h1 {
color: #000!important;
}