I would like to change the size of the text of the product name when it is shown in a grid, for example the “Women’s Cardigan with Back Overlap” text.
Shop: (REMOVE ALL $ SIGNS FROM URL)
Password: (REMOVE ALL $ SIGNS FROM PASSWORD)
j$uneada$ptive
I would like to change the size of the text of the product name when it is shown in a grid, for example the “Women’s Cardigan with Back Overlap” text.
Shop: (REMOVE ALL $ SIGNS FROM URL)
Password: (REMOVE ALL $ SIGNS FROM PASSWORD)
j$uneada$ptive
@rachelwong , do this to fix it in 20 seconds:
.collection .grid__item .card-information__text {
font-size: 15px !important;
}
.collection .grid__item .price *{
font-size: 14px !important;
}
@media (max-width: 749px){
.collection .grid__item .card-information__text {
font-size: 12px !important;
}
.collection .grid__item .price *{
font-size: 11px !important;
}
}
You can change the values as per your wish:
15px = font size desktop
14px = price size desktop
12px = font size mobile
11px = price size mobile
Kind regards,
Diego