Change Formatting of Product Price for Debut Theme

I’ve tried what seems like all the solutions across forums, but nothing seems to work.

I’d like to do the following to the prices on my product pages.

  1. unbold

  2. change the color

  3. resize

Store URL is loveworthyjewelry.com

Thank you so much!

Add a new CSS page to your theme (go to Online Store > Actions > Edit code) and in your theme.liquid include your new CSS file after the main CSS file.

{{ 'my-custom.css' | asset_url | stylesheet_tag }}

Then you can paste something like the following into your custom CSS sheet:

span.price-item, span.price-item--regular {
  font-size: 16px;
  font-color: blue;
  font-weight: normal;
}

Thank you!!