Product Title and it's font Customization

Hi guys, I am using debut theme in my store and I have this problem. I want to change the product title from bold letters or normal letters plus its size too and I want to keep the price font as it is now.

Thanks in advance

1 Like

Hello @Iamprashant

please share your site URL.

https://clarkssmith.com

But it’s password protected for now as I haven’t launched my store yet.

share password please !

Cleath

hello @Iamprashant

.product-single__meta h1.product-single__title {
    font-size: 23px;
    font-weight: 500;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

@Iamprashant

Please add the following code at the bottom of your assets/theme.css file.

h1.product-single__title {
    font-size: 25px;
    font-weight: normal;
}

Hope this works.

Thanks!

Thanks,


it worked there but I thought that it would here as well, when we click on a certain collection and all product shows there, could you help in this as well? attaching down a SS to understand better.

1 Like

@Iamprashant

Please add the following code for collection.

.product-card__title{
font-weight: normal !important;
}
.product-card__title{
font-weight: normal !important;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid