Hi,
I want to reduce the size of my collection title in my collection page on mobile only. (I want it to be at 20px)
Thanks
Goal: reduce the collection page title font size on mobile only to 20px.
Outcome: A clear, actionable mobile-only CSS fix was provided. No explicit confirmation of resolution from the requester; discussion appears open pending their feedback.
Hi,
I want to reduce the size of my collection title in my collection page on mobile only. (I want it to be at 20px)
Thanks
Hello @imazele
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
.collection-hero__title {
font-size: 20px !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
On mobile only not on desktop please!
Remove previous code and add this code:-
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.
@media screen and (max-width: 768px) {
.collection-hero__title {
font-size: 20px !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello,
Please share “Store URL”
Thanks!
Hi @imazele ’
@media(max-width:767){
.collection-hero__title {
font-size: 20px !important;
}
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!