How to make product title on homepage bold

Hello

I want to make to product titles bold but i dont know how can someone help me please.

I did it when you press on one product but for the whole page with the products it is not bold

I’m currently using REFORMATION theme.

Thanks

AM82

1 Like

.product-details span.title {
font-weight: bold !important;
}

i tried it also with this but it is not working

@AM82 try this code

.product-card-title {
    font-weight: bold !important;
}
1 Like

Hi @AM82

Which page you like it to be bolder? In product page or the homepage collection?

I try to use the demo of your theme. Im not sure if it work in your store.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product-information h1.product-title {
    font-weight: bolder;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like