Requesting Aleyant's consideration to modify skins to accomodate the best practice for page speed and load times on mobile.
Preload key requests
Consider using `<link rel=preload>` to prioritize fetching resources that are currently requested later in page load.Learn more.
Eliminate render-blocking resources - MOBILE AND DESKTOP
Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. Learn more.
Remove unused JavaScript - MOBILE AND DESKTOP
Remove unused JavaScript to reduce bytes consumed by network activity.Learn more.
Remove unused CSS
Remove dead rules from stylesheets and defer the loading of CSS not used for above-the-fold content to reduce unnecessary bytes consumed by network activity.Learn more.
Ensure text remains visible during webfont load - MOBILE AND DESKTOP
Leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. Learn more.
Does not use passive listeners to improve scrolling performance - DESKTOP
Consider marking your touch and wheel event listeners as `passive` to improve your page's scroll performance.Learn more.
We definitely agree with this request and would like to see these items added. It affects the overal responsiveness on mobile users.