Solved

Change Formatting of Product Price for Debut Theme

loveworthy
New Member
8 0 0

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!

Accepted Solution (1)

mnearents
Shopify Partner
78 4 48

This is an accepted solution.

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;
}

 

View solution in original post

Replies 2 (2)

mnearents
Shopify Partner
78 4 48

This is an accepted solution.

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;
}

 

loveworthy
New Member
8 0 0

Thank you!!