Trying to make my WP website mobile-friendly, I implement the following:
@media screen and (max-device-width: 780px) {}
However, to ensure proper alignment, I find myself using large values such as font-size: 4em;
, header {height: 200px;}
(compared to 100 on desktop). Is this standard practice?
The issue is most noticeable with the Gallery plugin - where thumbnail sizes like 200x300 appear minuscule on mobile devices!
Is there a more effective method for optimizing websites for mobile viewing?