Decrease Size of product title in debut theme

I want to decrease Size of title.

URL: https://greendeerkids.myshopify.com/

ps. green

Hi @Avantika01 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
.product-single__meta .product-single__title {
    font-size: 18px !important;
}

NOTE: Value: 18px → you can change to fit your theme

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

What if I wanted to make it at centre?

I tried code: text-align: center;

It made the title centred but not pricing.

Hi @Avantika01

YOu try bellow code:

.product-single__meta .product-single__title {
    text-align: center !important;
}

Hopy it can help you