Browsing the forums while using a mobile device is not a good experience because almost half the screen is covered by the enormous header. It’s like having to read through a window and feels weird. I think it should automatically hide once the user scrolls down so that more of the information (which is why they are reading the forum in the first place) is visible.
Please fix with this css:
@media only screen and (max-width: 600px) {
.scrolled-header .two-rows.extra-info-wrapper{ display: none; }
}
Also there’s a simple fix for the horizontal scroll that moves the entire page around for no reason and makes navigating the forums on a mobile device awkward.
Add this meta tag to fix the horizonal scroll bug:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">