Sup guys, I own a wordpress site but I need to make changes for my mobile traffic. One of the changes is to increase all font sizes on the site (according to Google PageSpeed Insights). Is there a plugin for this or I just need to put a line code in a specific file to increase ALL the font sizes on the site when someone using a mobile device is on my site ? Thank you
I don't know exactly how things on your site are styled, but in general it can be done by adding media query to your main CSS stylesheet (probably style.css or something similar). At the end of this file you can add: @media (max-width: 767px) { <your styles ONLY for devices up to 767px wide> } I don't know how much do you know about html/css but googling "css media queries" will give you appropriate info.
Started a conversation with you. I will check that out and test it with a "test site" before trying with the real site.