If 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 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.
As is now I have to inject
['.vector-menu-content-list .interlanguage-link.interwiki-en', '.vector-menu-content-list .interlanguage-link.interwiki-pl'].forEach(el =>{
if (document.querySelector(el))
{
el.style = ''
let lang = document.querySelector(el)
lang.parentNode.insertBefore(lang, lang.parentNode.firstChild)
}
})