How can I reduce product description text size in Narrative Theme?

Hi - I am using the Narrative Theme, but the Product Description text is too large. How can I make it smaller?

1 Like

Hi @KurtM ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

@KurtM please share your store URL and password(If it is password protected.). So that I can check and give you the exact solution.

Welcome to shopify community.

Please share your store URL and if your store is password protected then please provide password too.

Thank you.

Hi Marvic -

https://www.shopmadebyearth.com/

PW: preech

Thank you!

Hi AvadaCommerce -

https://www.shopmadebyearth.com/

PW: preech

Thank you!

Hi Denishamakwana -

https://www.shopmadebyearth.com/

PW: preech

Thank you!

To change you follow the instruction:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss>paste below code at the bottom of the file:
.product__title {
    font-size: 16px;
}

NOTE: You can change the 16px value to whatever you want to match your theme

I hope it would help you.

1 Like

Please add below code in bottom of assets/theme.scss.css file.

@media only screen and (min-width: 750px)

product__title.h2 {
font-size: 2rem;

}
Thank you.

h1.product__title.h2.text-center {
    font-size: 2rem!important;
}

@KurtM

Add this code in the theme.css

1 Like

Thank you so much!

Thank you!