How to change to old and new price color on collection page? Symmetry theme

Topic summary

A user seeks to customize the display colors of current and discounted prices on their collection page using Shopify’s Symmetry theme.

Solutions Provided:

Method 1 (CSS in theme.liquid):

  • Navigate to Online Store → Theme → Edit Code
  • Locate theme.liquid file
  • Insert custom CSS code before the </head> tag
  • Target price elements with specific color values
  • This solution was confirmed working by the original poster

Method 2 (Alternative CSS approach):

  • Access theme code editor via Online Store → Themes → Edit code
  • Open Assets/theme.css or Assets/base.css
  • Add CSS targeting .price--highlight (current price) and .price--compare (old price) classes
  • Customize color values using hex codes

Status: Resolved. The user successfully implemented the first CSS solution and confirmed it worked for their store. Both methods involve adding custom CSS to modify the styling of sale and regular price elements on collection pages.

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

How to change the colors of the current and old price on the collection page? I’m using the Symmetry theme.

https://tsukiakari-boutique.com/collections/blouse-closure-sale

Thank you in advance!

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the tag


Result:

Hope this helps! If yes then Please don’t forget hit Like and Mark it as solution!

Awesome! Thank you!

Hello @Rickyxane

To change the colors of the current and old prices on the collection page in the Symmetry theme, follow these steps:

  1. Go to your Shopify adminOnline StoreThemes.

  2. Click “Customize” on your live Symmetry theme.

  3. In the Theme Editor, navigate to a Collection page preview.

  4. On the left sidebar, click “Theme settings” (usually a paintbrush icon).

  5. Go to Colors – here, you may find options for “Price” or “Sale price”, depending on your theme version.

If you don’t see those options directly, you can add custom CSS:

  1. Go to Online StoreThemes → Click “… > Edit code” on your Symmetry theme.

  2. Open the file: Assets/theme.css or Assets/base.css (depending on version).

  3. Scroll to the bottom and add this custom code:

/* Change current price color */
.price--highlight {
  color: #000000; /* Replace with your desired color */
}

/* Change old price (compare-at price) color */
.price--compare {
  color: #999999; /* Replace with your desired color */
}
  1. Click Save and check your collection page.

Let me know the colors you’d like, and I can provide you with the exact code!