Hi, when I view my website on mobiles my h1 title in the header overlaps with the mobile menu button.
Is there a way to make my h1 title smaller when viewed on mobiles?
Thanks, Richard
Hi Yigit, I made the h1 title smaller in the general settings styling, but it would be good to be able to set it larger on large screens and smaller on mobiles so that it doesn’t collide with the mobile menu.
Thanks, Richard
Hi!
You can use this on Quick CSS to alter the size of the h1 logo:
h1.logo.bg-logo {
font-size: 38px !important;
}
@media only screen and (max-width: 767px) {
h1.logo.bg-logo {
font-size: 26px !important;
}
}
Regards,
Ismael
Great, thanks Ismael