Change product name color

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/

1 Like

Add This css in your edit code > base.css file

.product .product__title h2 {
    color: #000;
}
1 Like

Hello @ai41

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 a.product__title h2.h1 { color: #000 !important; }

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

Hello @ai41

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the Bottom of the file:
.product__title h1 {
color: #000!important;
}