Debut Theme: Unbold the product title and price on collection page

Hi,

How can I unbold the product title and price on collection page?

https://phs6rxboyiotn55k-27861221460.shopifypreview.com

Appreciate your help on this!

Thanks,

~VS

Hello @VisheshStudio

Add this css at the bottom of

Online Store->Theme->Edit code->Assets->theme.scss.liquid

.grid__item .h4.grid-view-item__title.product-card__title {
	font-weight: normal !important;
}
.product-card .price .price-item.price-item--regular {
	font-weight: normal !important;
}

Hope this will work for you

Thanks…

Thanks @oscprofessional for the help! It worked out.

Also, couple more queries as follows:

  1. How to unbold the highlighted area that is the title and price on a product page?

  2. As I am selling original art, which is one piece only, how can I remove the quantity box for my particular collection “Originals”?

Refer to the below image.

Link: https://vishesh-studio.myshopify.com/collections/original-work/products/art-makes-you-smart-original-painting

Hello @VisheshStudio

  1. Changes regarding to >> How to unbold the highlighted area that is the title and price on a product page?

Add this css at the bottom of

Online Store->Theme->Edit code->Assets->theme.scss.liquid

.product-single .product-single__title {
	font-weight: normal !important;
}
.product__price .price-item.price-item--regular {
	font-weight: normal !important;
}
  1. For this condition As I am selling original art, which is one piece only, how can I remove the quantity box for my particular collection “Originals”?

apply such unit product condition in product.liquid for only one piece of product

Hope this will work for you

Thanks…

Thanks @oscprofessional for replying.

  1. I tried with your mentioned code, its not working. It’s still bold Product Title and Price.

  2. For this condition As I am selling original art, which is one piece only, how can I remove the quantity box for my particular collection “Originals”?

apply such unit product condition in product.liquid for only one piece of product

----> Could you please share the implementation logic. Where and how to implement for one collection, but it should not affect other collections.

Looking forward to hearing from you.

Regards,

Chaitanya

I uploaded a third party theme to my store but the theme still carries the theme name. I tried editing the code but it still has no effect on the store. I need help to rectify this issues please…

Thank you, @oscprofessional . This helped me, too!

And thank you, @VisheshStudio , for posting this question!

So relieved to be able to solve this… : )