How can I bold the price on the Sense theme?

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:

  • First, go to the Admin page and select Online Store:

  • Select the 3-dot button next to the Customize button and then select Edit Code:

  • Go to the Assets section and select the base.css file:

  • Add the following lines at the end of the file, and change your color code into the color property below:
/* 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.