Changing the font of a product name in product page

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!

@Erigone

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hi,

Very kind of you

www.camelie.pl

password: GGzorza

@Erigone

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

@Erigone

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!

Thank you for your help!

I would like to know how to change this (size and if it’s bold or not). Can you help?

@Erigone

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;
}