Product description font is changed

Topic summary

A user encountered a styling issue on their collection page where product prices and descriptions were linked together, preventing independent formatting. This problem occurred specifically for products without a compare-at price.

Root Cause:
The price and description elements were sharing CSS properties, causing style changes to affect both simultaneously.

Solution Provided:
Two community members offered CSS-based solutions:

  • Primary fix: Add custom CSS targeting .card-information > .price to style prices independently
  • For descriptions: Use .card-information .card-product-caption to modify description styling separately

Implementation:
The user can add custom CSS through the theme editor to control font, color, and other properties for each element independently.

Status: :white_check_mark: Resolved - The user confirmed the CSS solution worked successfully.

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

Hi,

I am having a problem with the site I am setting up. In the collection page, some of the products have the issue that the price is stuck with the product description. So whenever I change the font or style of the price, the description also be affected and changed. I found out that those products are the one which has the original price (no Compare-at price). I hope that someone can help me to separate them out so I can change the style and font for each of them differently

1 Like

Hi @shinhajoon

Please share me your store url & password (if applicable) to let me detect the issue & share you the solution

Hi @BiDeal-Discount ,

The URL is https://www.the969.com/collections/all

You want price will have style different for only it like this, right? not impact to description

Hey @shinhajoon

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 solve your problem then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

yes, price will have a different style and font and not impact the description

go to edit theme editor → add custom CSS:

.card-information > .price{
  color: #94392a;
}

1 Like

so if I want to change the font for the price, then I just need to add the font into this one like this, right?

.card-information > .price {
  color: #94392a;
  font: 16px Arial, sans-serif;
}

exactly. Just do like that

If you want to change style for description only, you can use:

. card-information .card-product-caption {
   color: ;
   font: ;
}
1 Like

Awesome, thank you so much. It worked!

You’re welcome :hugs: