A user is stuck at 96% accessibility on PageSpeed and is looking for hidden elements in WordPress or GeneratePress that may be affecting their score. They request improvements to accessibility features.
Hey everyone, I'm building a minimalist, "Sovereign Tech" inspired site using GeneratePress (free) and almost zero plugins (just removed the last heavy cookie banner). I managed to hit 100/100/100/100 on Desktop, but on Mobile, I’m stuck at 96% Accessibility. What I've done so far: Fixed color contrast (links are now pure white on black). Hardcoded a clean, static footer to bypass theme/database bloat. Added aria-labels to my legal links. The Issue: PageSpeed Insights still marks 4% as missing, but doesn't give a clear "red" error—just a "96". I suspect there might be some hidden GeneratePress elements (like skip-links, mobile menu toggles, or screen-reader-text) that I haven't accounted for in my manual cleanup. Here is my current footer.php code: <footer role="contentinfo" style="background:transparent; padding:60px 20px 40px; text-align:center;"> <div style="color:#555; font-size:12px; margin-bottom:15px; font-family:monospace;"> © 2026 NeoBild • Independent Infrastructure </div> <nav aria-label="Legal" style="font-size:14px; font-family:monospace;"> <a href="/datenschutz/" aria-label="Privacy Policy" style="color:#ffffff !important; text-decoration:underline !important; margin:0 10px;">Privacy</a> <span style="color:#333;" aria-hidden="true">|</span> <a href="/impressum/" aria-label="Imprint" style="color:#ffffff !important; text-decoration:underline !important; margin:0 10px;">Imprint</a> </nav> </footer> <?php wp_footer(); ?> </body> </html> Does anyone know if GeneratePress or WP-Core injects something that could drop those last 4 points? Maybe a missing lang attribute or some hidden mobile menu icon that needs a label? Any help to reach the "Holy Grail" of 4x100 is much appreciated!