@Jodiebe Please follow below steps to change the color of the product title. Let me know whether it is useful for you.
- From admin, go to “Online Store” → “Themes”.
- Click action button from the current theme and select “Edit code”.
- Search “base.css” file.
- If you want to change the product title color only for product page, paste below code at the bottom of the file.
.product .product__info-wrapper .product__title h1{
color:#0000ff;
}
- Else, if you want to change the product title color for the collection page, cart page, product page and search page, paste below code at the bottom of the file.
.product .product__title h1, .card__information .card__heading.h5 a.full-unstyled-link, .cart-item .cart-item__details .cart-item__name {
color: #0000ff;
}
NOTE: You can change the color as per you need.
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.




