how to make prices bolder?

Topic summary

A Shopify store owner wants to make product prices appear in bold and change grey prices to black on their site (redpandaoutdoor.in).

Initial Solutions Attempted:

  • Tech_Coding provided CSS code to add to theme.liquid targeting .price-list and .sale-price.text-lg classes
  • This solution didn’t work on the home page, only on product pages

Color Change Issue:

  • User also wanted to change grey prices (.text-subdued class) to black
  • Tech_Coding suggested targeting .text-subdued with color: #000 !important;
  • This approach also failed to work

Working Solution:

  • GTLOfficial provided alternative instructions: add CSS code to theme.css file (in assets folder) instead of theme.liquid
  • Code targets .text-subdued with both color: black !important; and font-weight: bold !important;
  • User accepted this solution as working

Key Takeaway: The issue was resolved by placing the CSS in the theme.css file rather than inline in theme.liquid, addressing both boldness and color requirements.

Summarized with AI on November 5. AI used: claude-sonnet-4-5-20250929.

i want prices to be in bold..
URL: redpandaoutdoor.in

Want Prices To be dispay like these..

Not working On Home Page

Hello @Emiway

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.price-list, sale-price.text-lg { font-weight: bold !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

NOT WORKING ON HOME PAGE AND PRODUCT PAGE TOO

How to Make its colour to black on home page

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

sale-price.text-subdued { color: #000 !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Want This Price To Be Black Which Are Grey

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.text-subdued { color: #000 !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark MY all Solutions as an Accepted Solution.

Not Working :downcast_face_with_sweat:

HEllo @Emiway
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> theme.css
add this code at the end of the file.

.text-subdued {
color: black !important;
font-weight: 1000 !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Thanks for accepting the solution.
Please hit like button also.

Please hit like button also.