How to rediuce size of page heading on Products Page?

My site is toltano.com

In the Shop Now page the Products heading is way larger than the headings on my other pages

This Shop Now page is mapped to “all products” in the main menu navigation

How can I reduce the size of this Products heading?

Thanks for your help!

1 Like

Hey @nvisibl1

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

1 Like

Hello @nvisibl1

.collection-hero__title{
    font-size: 30px;
    text-align: center;
}

Add this css in your css file.
Thanks.

Thank you so much !