How to reduce size of Product Title and Collection Title

STUDIO Theme (2.0)

I would like to decrease size of :

  1. product information/title

  2. collection banner/title
    I would like to increase size of

  3. Collection product grid/product title

I’ve tried and been unable to affect these sizes.

Thank you

Hello. Can you take a picture and mark them? It will help me help you easier. @whitrick

Hello @whitrick

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product__title h1 { font-size: 22px !important; /*adjust according to you*/ } .product__info-container .product__description{ font-size: 16px !important; /*adjust according to you*/ } .collection-hero__title{ font-size: 24px !important; /*adjust according to you*/ } @media screen and (min-width: 750px) .product-grid-container .grid { column-gap: 15px !important; /*adjust according to you*/ } }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.