Simple Machines Community Forum

SMF Support => SMF 2.1.x Support => Topic started by: dsanchez on May 05, 2019, 07:13:02 AM

Title: Default font size too small for mobiles
Post by: dsanchez on May 05, 2019, 07:13:02 AM
I already submitted an issue on github (https://github.com/SimpleMachines/SMF2.1/issues/5650) but meantime would like you to point me in which CSS file I can increase this. Thanks in advance.
Title: Re: Default font size too small for mobiles
Post by: SychO on May 05, 2019, 07:36:18 AM
You can add this to responsive.css


@media (max-width: 480px)
{
.post {
font-size: 15px;
}
}


you might want to edit the line height as well.
Title: Re: Default font size too small for mobiles
Post by: dsanchez on May 05, 2019, 07:59:49 AM
thank you, just did that. I put finally 16px. Its more readable now, the default size is really way too small.