How to change sizew of a Title, in mobile!

Hello guys, how can I change the size of this Titel? I want to make it a little smaller. Only for mobile users.

Hey there Nikos @NikosBat Add this code to your base.css @media (max-width: 749px) {
.product__title h1 {
font-size: 20px !important;
}
}
@media (min-width: 750px) {
.product__title h1 {
font-size: 30px !important;
}
}

I believe you can edit the figures to suit the exact size you’d prefer.

Hello Bundler-Manuel, for some reason its not working :confused:

Hi NikosBat,
Please provide the URL