How can I make collection titles bold on the home page using debut theme?

hello, i would like to some help please.
how can i bold the titles of the collection on the home page?
i’m using debut theme.
attached screenshot to be clear on the exact title

thank you very much!!

@anathalaf

Please share store URL.

Thanks!

1 Like

My store URL is https://signon-store.com/
the password is krawth

1 Like

@anathalaf

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

@media only screen and (max-width: 749px){
.collection-grid-item__title { font-weight: bold;}
}

@media only screen and (min-width: 750px){
.collection-grid-item__title { font-weight: bold;}
}

Thanks!

1 Like

you are the best! thank you very much!
maybe you can tell how to change the color of this title?

@anathalaf

Thanks! welcome again.

1 Like

@anathalaf

Please add following css for color

@media only screen and (max-width: 749px){
.collection-grid-item__title { color: red !important;}
}

@media only screen and (min-width: 750px){
.collection-grid-item__title { color: red !important;}
}
1 Like

Thank you very much

1 Like