• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Website problem?

I blocked it on mobile cause it takes too much room. I left it on desktop in case missiles are coming and someone cares to tell me.
 
I wrote a user style to mostly hide the announcements area unless I hover my mouse over it. Touching the area on mobile might work too; I'm not sure.

Code:
/* ==UserStyle==
@name           forums.anandtech.com hide announcements
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Hide the Announcements area unless I hover or click it.
@author         Ken_g6
==/UserStyle== */

@-moz-document domain("forums.anandtech.com") {
    div.notice-content {
        max-height: 1em;
        overflow: hidden;
        text-indent: -9999px;
        position: relative;
        
        transition: max-height 0s;
    }
    div.notice-content:before {
        text-indent: 9999px;
        position: absolute;
        content: "Announcement!";
        top:-1px;
    }
    div.notice-content:hover, div.notice-content:focus {
        max-height: 100vh;
        text-indent: 0px;        
        transition: max-height 2s;
    }
}
 
Back
Top