Hi - I am using the Narrative Theme, but the Product Description text is too large. How can I make it smaller?
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.
To change you follow the instruction:
- Go to Online Store->Theme->Edit code
- 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.
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;
}
Add this code in the theme.css
Thank you so much!
Thank you!