How to change price font size and color on product page in Yuva theme?

I want to change the font color and size of the price on product page. I use the Yuva theme. If you need it, you can visit the website 5c252b-bc.myshopify.com. Thank you!

1 Like

Hello @OneChefOn

  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:
.yv-pricebox-outer .yv-product-price {
font-size: 15px;
color: red;
}

1 Like

I can’t find base.css. Also, can the color setting be in color number format? For example, #FFFFFF

1 Like

Hello @OneChefOn

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.min.css and paste this at the bottom of the file:
.yv-pricebox-outer .yv-product-price {
font-size: 15px;
color: #e01212;
}
2 Likes

Hi @OneChefOn , you can follow these steps:

Step 1: Open Online Store → Themes → Edit code

Step 2 :Find theme.min.css file

Step 3: Paste this code at the bottom of the file

.yv-pricebox-outer .yv-product-price {
  font-size: 16px;
  color: #666666;
}

Result:

If this helpful, please let us know by giving us a like and marking it as a solution. Thanks

1 Like

Hi @OneChefOn

you can add this css code to customize Price size & color on your product page:

.yv-prizebox .yv-product-price{
  color: red;
  font-size: 25px;
}
1 Like

Thank you very much, my problem solved.

1 Like

Hello @OneChefOn

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance. If helpful, please like all posts.

2 Likes