Home › Forums › Azuma › azuma – no mobile theme available? › Reply To: azuma – no mobile theme available?
January 18, 2020 at 12:58 pm
#9060
Andy
Keymaster
Hi @corchea
For your site I would recommend changing the Site Title font size back to the default 56px (it looks like you have increased it to 59px) and changing the Letter Spacing to 0 (zero) in Customize > Typography & Fonts > Site Title
Also add the following to Additional CSS to make the site title a bit smaller on mobile
@media only screen and (max-width: 768px) {
.site-title {
font-size: 42px;
}
}
@media only screen and (max-width: 480px) {
.site-title {
font-size: 34px;
}
}