I am currently using this custom code on my dawn theme to be flexible with price font size but its ok for my home page and others but on the product page only i want another size for the price is it possible. Thanks in advance : )
@NOT1 ,
You can change the code like this to increase font size in pdp
.price-item.price-item--regular {
font-size: 14px;
font-weight: normal;
color: #605E5C;
}
.price-item.price-item--sale {
font-size: 14px;
font-weight: normal;
color: #605E5C;
}
.product .price-item.price-item--regular{
font-size: 16px /* Here is the font size of pdp */
}
.product .price-item.price-item--sale {
font-size: 16px /* Here is the font size of pdp */
}