• 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.

Stylus (Addon) Forum Themes

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
If you want to move the date/time and message number above the message content, it's set up in a CSS flex box, so it makes it relatively easy. The 'likes' boxes have unique IDs, so I could only figure out how to order them using a wildcard, otherwise they get a default order of 0 and float to the top.

Code:
.message .messageDetails {
    order: 1;
}

.message .messageContent {
    order: 2;
}

.message .messageMeta {
    order: 3;
}

*[id^='likes-post'] {
    order: 4;
}
 
anyway to make a script that will remove the "NEW" post indicator, the traditional style of bold post links is so much better IMOI
 
Quick bug: looks like that style has some minor problems with forum announcements. See: https://forums.anandtech.com/forums/for-sale-trade.19/
Fixed. 🙂
anyway to make a script that will remove the "NEW" post indicator, the traditional style of bold post links is so much better IMOI
Looks possible on the thread links. I haven't done much there yet. What about the white-on-orange NEW on posts? Was there a traditional style to indicate new posts? I don't remember one.
 
The thread list itself (and basically all elements w/ text that is light gray or light blue) still is straining on the eyes. I'd love all of them in the "classic" colors like the actual list of posts.
 
Anubis said:
if only i could get these to work in IE so the site would be readable at work again

You should be able to anubis.... Im on IE6 and as far as I know ALL IE VERSIONS (6 up) have a compatibility section.... You can run whatever CSS you want bud 🙂
 
Well, I figure I should post what I have so far, now that breadcrumbs look decent:

https://userstyles.org/styles/131291/anandtech-forums-vbulletin-style

I plan to continue to update that later.

Thanks much ...words cannot express just how bad the default theme is 😱

PS Here is the above theme inverted (using paint.net)
Is there a simple "one liner" to invert all colors I could add somewhere to make it happen in real life?
6wPKPbO.jpg
 
Last edited:
Thanks much ...words cannot express just how bad the default theme is 😱

PS Here is the above theme inverted (using paint.net)
Is there a simple "one liner" to invert all colors I could add somewhere to make it happen in real life?
6wPKPbO.jpg

On second thought -" inverting all your colors everywhere" might not be the best choice - avatar wise 😀


v6qpoPc.jpg
Yes there appears to be, but you're right to worry about images. Here's a two-line CSS that supposedly should work.

Code:
body { filter: invert(100%); }
img { filter: invert(100%); }
 
Back
Top