Mobile Post Title Too Large

Posted in: Newspaper
Post count: 34

Is there a way to add some coding to change the font on the mobile post title? Its fine on desktop but from my phone its huge.

Post count: 1043

Best to include your website link or the link to the affected post here.

Post count: 20688

Hi,

The font size on mobile is predefined, it is meant as a limit in case users are setting a higher font size. It will be reduced to 32px or enlarged if it is of a lower size. The limit works both ways.
What you could do is to use a code like this one, to make the font smaller on mobile devices

@media (max-width: 1018px) {
.td-post-header header .entry-title {
font-size: 20px!important;
}}

This code can be entered in Theme panel->Custom CSS section.

Thanks

Post count: 34

i added that css code and it didnt change the font on mobile. here is a link http://triplehq.com/ill-trip-woke-sleepville/

Post count: 20688

I have tested the code before giving it to you, it works in my test. It works when applied on your website
https://www.screencast.com/t/VoYZ3lcHf
I modified the font size to match your current font size

@media (max-width: 1018px) {
.td-post-header header .entry-title {
font-size: 23px!important;
}}

Enter it here and save – https://www.screencast.com/t/ryHsgnZ1
If you have caching installed or server provided clear them, that might be why the code is not applying.

Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.