Hi can anyone please help me know how to make price bold for sense theme and also changing colors for both the actual and compared price
Thanks in advance
Hi can anyone please help me know how to make price bold for sense theme and also changing colors for both the actual and compared price
Thanks in advance
Hi @ALPHA_2
Please follow these steps:
/* custom for product page */
.product .price .price__container {
font-weight: bold;
color: #000; /* color hex */
}
/* custom for home page, search page */
.card-information .price {
font-weight: bold;
color: #000; /* color hex */
}
I hope that it works for you.