It's a single line of CSS that's shifting everything to the left. If this line of CSS can be removed, the wiki will display fine. Please mods, can you fix?
View attachment 103839
// ==UserScript==
// @name JankFixForBeyondUnreal
// @namespace https://kek
// @version 0.1
// @description Fix for wiki.beyondunreal.com
// @author You
// @match https://wiki.beyondunreal.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=beyondunreal.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementsByTagName('head')[0].insertAdjacentHTML(
'beforeend',
'<link rel="stylesheet" href="https://wiki.beyondunreal.com/w/loa...s.monobook.styles&only=styles&skin=monobook&*" />');
})();
// ==UserScript==
// @name Fix Margin
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Fix margin issue on wiki.beyondunreal.com
// @author You
// @match https://wiki.beyondunreal.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.onload = function() {
var element = document.getElementById('column-content');
if (element) {
element.style.marginLeft = '0px';
}
};
})();