Hi!
I want to change the font size of product names in collection page. It is too small right now, I want to make make it bigger.
This is the link for reference: https://theplanetjunior.com/collections/action-figures
A user seeks to increase the product title font size on their Warehouse theme collection page, finding the current size too small.
Solution Provided:
.product-item__title.text--strong a.link with font-size: 17px !important;Additional Request:
span.price.price--highlight with font-size: 15px !important;Alternative Method:
</body> tagfont-size: 18px !important; for product titlesThe discussion includes screenshots demonstrating the current appearance and reference links to the collection page.
Hi!
I want to change the font size of product names in collection page. It is too small right now, I want to make make it bigger.
This is the link for reference: https://theplanetjunior.com/collections/action-figures
@planetjuniorseo
put below css into theme.css
a.product-item__title.text--strong.link {
font-size: 17px !important;
}
Thats working. Also can you give the code to make the price font small? price written in red. i want to make it small
span.price.price--highlight {
font-size: 15px !important;
}
Add above code for make price font smaller
Hello @planetjuniorseo ,
I would like to give you a solution to support you:
.product-item__title.text--strong.link {
font-size: 18px!important;
}