Hi Community! I want to change the font (size, boldness) of a font of a product name in product page. Where should I look for in coding? (MINIMAL THEME)
Tank you for any help!
Hi Community! I want to change the font (size, boldness) of a font of a product name in product page. Where should I look for in coding? (MINIMAL THEME)
Tank you for any help!
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
please Go to Online Store->Theme->Edit code then go to assets/theme.scss.liquid ->paste below code at the bottom of the file.
.product-single .h1, .product-single h1 {
font-size: 3em !important;
line-height: 1.2;
font-family: boldness !important;
}
Hope this work.
Thanks!
Thank you for your help but what I meant is that I don’t want my text to be bold :)) It was from the very beginning
Remove previous css add this new css code your css file.
.product-single .h1, .product-single h1 {
font-size: 28px!important;
font-family: Futura !important;
line-height: 1.2;
font-weight: 500 !important;
}
Thanks!
please Go to Online Store->Theme->Edit code then go to assets/theme.scss.liquid ->paste below code at the bottom of the file.
#shopify-section-featured-collection .grid-link__title {
color: #403b37;
font-family: Futura,sans-serif;
font-size: 1em;
line-height: 1.4;
font-weight: normal !important;
}
#shopify-section-featured-collection .grid-link__meta strong {
font-family: Futura,sans-serif;
font-size: 1em;
line-height: 1.5;
color: #5b544f;
font-weight: 400 !important;
}