Change font and font size of product title in product grid

Topic summary

A user wanted to modify the font and font size of product titles in their product grid to match the styling of their sorting menu.

Solution provided:

  • Navigate to Shopify admin > Online store > Edit code
  • Open the theme.liquid file
  • Locate the </head> tag
  • Insert custom CSS code above it targeting .card-information__wrapper a.card-information__text with font-size: 1.4rem !important

Outcome: The solution successfully resolved the issue. The user confirmed it worked as intended.

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

Hi all,

I would like to change the font and the size of the font of my product titles. I would like to have it the same as the sorting menu you see on the left. Could someone help me with this?

Thank you in advance

1 Like

Your store URL please?

https://atelierpomme.nl/en

Hi @myl1
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code
2/ Search for “theme.liquid” file
3/ Open the file and search for tag and add the following code above tag
Here is the code for Step 3:

{% style %}
.card-information__wrapper a.card-information__text{
    font-size: 1.4rem !important;
}
{% endstyle %}

If this helpful, please let us know by giving us a like and marking its as a solution. Thanks you :heart_eyes:

Yes, this worked!! Thank you very much!

1 Like