How can I change my product title color to be more visible?

Solved

How can I change my product title color to be more visible?

KalvinT
Tourist
5 0 1

The product title for each of my products is white on white background. How can I fix this? Please see attached picture. I want "Yamaha" to be visible in black, see red circled outline. Currently the product title is in white lettering (I have it highlighted with my cursor selection, so it's visible in the picture).

My Shopify store is www.vmrpaints.com. Thank you! 

Product title.jpg

Accepted Solution (1)

dennismathenge
Shopify Partner
27 1 3

This is an accepted solution.

Hello Kalvin,

The product title is a header element of type h2. Looking at your shop, h2 elements have the color white, that's why your product title is not visible since it has the same color as the background.

<h2 class="product-single__vendor">Yamaha</h2>

Adding the following somewhere in your theme should fix it:

.product-single__vendor {
  color: #000;
}

View solution in original post

Replies 2 (2)

dennismathenge
Shopify Partner
27 1 3

This is an accepted solution.

Hello Kalvin,

The product title is a header element of type h2. Looking at your shop, h2 elements have the color white, that's why your product title is not visible since it has the same color as the background.

<h2 class="product-single__vendor">Yamaha</h2>

Adding the following somewhere in your theme should fix it:

.product-single__vendor {
  color: #000;
}
KalvinT
Tourist
5 0 1

This fixed it, thanks Dennis!