Hello, can anyone help me please with how to change the size of my products title in collection page?
Thank you!
Hello, can anyone help me please with how to change the size of my products title in collection page?
Thank you!
Hi @Gabi6 , go to edit code > assets > collection-products.css and add this:
h3.t4s-product-title{
font-size:20px!important;
}
Change 20 with the value you’d like.
Hello,
Thank you! It works and it changes the title size for mobile and desktop. Could you tell me please, where should I add this code in order to make the change only for mobile?
You can add this in the same file (collection-product.css) and it will only affect size for mobile:
@media all and (max-width: 750px) {
h3.t4s-product-title{
font-size:20px!important;
}
}
Again, change value of 20 with the value you’d like.
Great! Thank you a lot! You are amazing! ![]()