Kinematics
Well worn.
- Joined
- May 14, 2015
- Messages
- 7,123
- Likes received
- 19,883
I'll always recommend using an addon like Stylus for controlling problematic website UI. I'm not excusing the problems QQ has with their display config, but I haven't thought about it in ages because I can just set it to what I want it to be.For all I know it's because my browser or an adblock plugin or something just doesn't get along with the specific cookie QQ uses to track this, but I'm not gonna start dropping those for QQ's sake and this sort of setting shouldn't need to be a cookie. I'm signed in already.
I'm looking for the wide margins, so the posts are only taking up like... the middle half, maybe two thirds of the screen? I want it to stick in narrow mode.
This is from my layout overrides:
CSS:
/* Personal max width for site content. */
.p-body > .p-body-inner {
margin: 0 auto;
max-width: 1170px;
}
Set the max-width value to whatever you want it to be, and you don't need to worry about what the site toggle does.
Note: I do a ton of customization to suit my preferences (I've got 8 separate sets of rules that apply to QQ, including converting it to the Halloween style theme), and I certainly don't expect others to go that far, but if you can manage, then these small annoyances are often easy to fix.
Like this one. Here's a CSS override for this issue, which will only apply to user posts (but not signatures):So, sort of question and suggestion in one I guess? Question if it is already a thing and suggestion if it isn't. Anyways. I'm wondering if there is a way to disable text color on other people's posts so I only see default text color. I'm trying to read though some stories and the author uses bright colors for things but I'm in light mode so I can't read the text unless I highlight it and that's starting to get very annoying when every thing the characters says and half of what they do are bright yellow.
CSS:
/* Don't allow author colors */
article.message-body span.fixed-color {
color: inherit !important;
}