Change price color for product page (Ella Theme)

Topic summary

A user is experiencing an issue where product prices display in white text on their Shopify store using the Ella theme, making them difficult to read. They need to change the price color to black.

Proposed Solutions:

Three community members offered CSS-based fixes:

  • Solution 1: Add CSS targeting span.price-item with color: #000 !important; to the end of the base.css file

  • Solution 2: Insert a <style> block in theme.liquid file above the </body> tag with similar color styling

  • Solution 3: Add CSS targeting .money-subtotal class with color: #000; to base.css

All solutions involve modifying theme files through the Shopify admin panel (Online Store > Themes > Edit Code) and applying black color (#000) to price elements. The discussion remains open as the original poster has not confirmed which solution resolved their issue.

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

I have this issue where for every product the price is in white, which file is this controlled in so I can change it to black?

https://kosterstaphorst.nl/products/universele-robot-e-serie-ur5

1 Like

@AndreNL - please add this css to the very end of your base.css file and check

span.price-item {color: #000 !important;}

Hey @AndreNL

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @AndreNL

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.money-subtotal {
color: #000;
}