I don't know why they did that, now we have empty space on the left and right, it's really useless, why is it better than using the full screen? "Our second change introduces a maximum line width to our content on pages where reading is the focus, such as article pages and discussion pages. Research has shown that limiting the width can lead to better retention of the content itself, as well as a decrease in eye stra…
So make the window narrower or get a narrower screen if you don't want to see empty space. Readability is more important.
Wikipedia is getting a new look
191–200 of 529 posts
Re: Wikipedia is getting a new look
#192Earlier quoted context omitted.
> I almost never use the left hand side bar (and I have a feel almost no one does) If you speak different languages, the left hand bar is very useful to switch between different language versions of an article.
I use that quite a lot, because google periodically just refuses to acknowledge that I usually want my links in English despite living in Germany. English quality is often times a bit better, but it is also useful to check in multiple languages, as sometimes you get different information, especially on more controversial topics.
Re: Wikipedia is getting a new look
#193Earlier quoted context omitted.
They are reducing maximum column width, but perhaps not as drastically as you'd wish: https://www.mediawiki.org/wiki/Special:MyLanguage/Reading/We...
Yeah, I don't think 900+px is ideal for reading on a desktop computer. Better than nothing, though!
Re: Wikipedia is getting a new look
#194If someone asked me to critique the UX of Wikipedia, the first two things I’d point out would be that I almost never use the left hand side bar (and I have a feel almost no one does) and that when paragraphs are that wide they become harder to read (especially when they snake around floated images). Not changing for 10 years, watching as some trends fade and others become law-of-the-land, and then making two changes…
I use it most often to change the language...
Re: Wikipedia is getting a new look
#195The detail page for the first feature they mention, limiting line-width [1], makes me think: Wow, it sure takes a lot of analysis and discussion to make what is a pretty straightforward and simple change. (Recall, too, this has been in the works for at least a year? And still isn't deployed to English wikipedia?) Which makes me realize there's sort of an ironic situation. When a site is beginning and small, you don't…
Thanks for the link — that subject has been my #1 complaint with Wikipedia for a long time. I'm glad they're finally doing something about it, even though it seems like I still won't be happy with it — judging by the wikis where the update is active, it's still too wide. The rationale in the article is interesting, but IMO wrong — the idea that you need to balance scannability and line length suggests that line lengt…
I get that line scannability is an issue for some people, but that's why _you_ can adjust the way _you_ read the article on _your_ device, without affecting _anyone else_. Web browsers, and desktop environments in general had this magic window-resizing ability for decades.
At least there are cool browser extensions like CustomCSS, which allow me to fix sites I visit often. I guess I will be adding Wikipedia there soon... :/
Re: Wikipedia is getting a new look
#196So does anyone have a userscript to override the maximum line width? I have claustrophobia, and having text forced into narrow columns actively triggers it. Taking a look at the Basque Wikipedia, I can tell right here that it's completely unusable for me. I'm willing to pay real money for someone to write me a script to override it.
Re: Wikipedia is getting a new look
#197Earlier quoted context omitted.
> I almost never use the left hand side bar (and I have a feel almost no one does) The left sidebar has two killer features for me: 1. Finding canonical translations for technical terms. You need to know what the standard way to translate "hardware acceleration" or "differentiable manifold" is in French? Go to the wikipedia page and hover over the language switcher link in the left sidebar. Done. This has become one…
I also find your first point to be a truly indispensable tool. How else do you know what they call carbon fiber in German? [0] But the second is a touchy area. In fact, Wikipedia's co-founder recently wrote a blog post detailing how its neutral point-of-view policy has flopped, in the name of fighting false balance. [1] His examples are pretty embarrassing, but more important in that Google points human "Search Quali…
Re: Wikipedia is getting a new look
#198Earlier quoted context omitted.
Design should not be trendy. It is not fashion. I hope we don't bloat up wikipedia pages with too much whitespace. Getting of borders, "minimal" looks bother me so much because they're sacrificing layout for aesthetics. There is a reason why borders exist. It is a line segment that separates logically laid out content into groups. I want Wikipedia to stay the same even if it is not ideal. There is a lot of legacy and…
With regards to line width, I don't understand 100% what you're saying. You agree that it is a problem, not because of aesthetics but because of readability. But then how do you propose to solve it? The only solutions are either increase font size (messing up things since now font size is tied to monitor width), or pad the sides with whitespace (what they're doing).
Re: Wikipedia is getting a new look
#199The detail page for the first feature they mention, limiting line-width [1], makes me think: Wow, it sure takes a lot of analysis and discussion to make what is a pretty straightforward and simple change. (Recall, too, this has been in the works for at least a year? And still isn't deployed to English wikipedia?) Which makes me realize there's sort of an ironic situation. When a site is beginning and small, you don't…
Thanks for the link — that subject has been my #1 complaint with Wikipedia for a long time. I'm glad they're finally doing something about it, even though it seems like I still won't be happy with it — judging by the wikis where the update is active, it's still too wide. The rationale in the article is interesting, but IMO wrong — the idea that you need to balance scannability and line length suggests that line lengt…
I'm not sure what they looked like before, but I also visited a few of the localized wikis and ended up getting a horizontal scrollbar. I know that the theme on English Wikipedia is very old and not exactly responsive, but this is not something that happens there; I get no horizontal scrollbar. Everything is sized to fit within my window, except on certain articles containing wide tables or (unfortunately) multi-column reference sections, and even then, it's limited to those elements, which overflow, and the main article contents end up sized correctly. So I have to think that whatever changes they're introducing might actually be causing new problems...
Re: Wikipedia is getting a new look
#200In `/chrome/userContent.css` I wrote the following:
@-moz-document domain(wikipedia.org) {
#mw-panel {
display: flex;
flex-direction: column;
}
#mw-panel nav {
order: 9;
}
#mw-panel nav#p-logo {
order: 1;
}
#mw-panel nav#p-lang {
order: 2;
}
}
This is only for Firefox, but imho that is the… least bad browser anyways ;)