Hi everyone, is there any way to change the font size on the collection page under the theme DAWN?
I feel that the title of the product in the grid is too small to read on the mobile screen.
Hi everyone, is there any way to change the font size on the collection page under the theme DAWN?
I feel that the title of the product in the grid is too small to read on the mobile screen.
Please share your store URL.
.card-information__text{
font-size: 20px !important;
}
@media (max-width: 749px){
.card-information__text{
font-size: 15px !important;
}
}
You can change the values as per your wish:
20px = font size for desktop
15px = font size for mobile
Kind regards,
Diego
Hi Diego,
I inserted the coding as you introduced. But it seems doesn’t work. Please kindly see the screen copy.
hii, @Wishpools
Paste this code on top of the component-card.css file.
span.card-information__text.h5 {
font-size: 20px !important;
}
Thank You.
That’s work! thanks! @Zworthkey
Not working for me, unfortunately. Has the file been modified since, please?
Didn’t work for me either.
EDIT: Based on this thread, I found the solution; https://community.shopify.com/c/shopify-design/font-size-dawn-theme/m-p/1347183
A small tweak to the answer above…
.collection .card-information__text.h5 {
font-size: 20px;
}