page shows up off to the side for some reason cant navigate

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

Animus

bladiebladibla
Sep 24, 2004
268
2
18
38
in Manta under water


This script fixes it with Tampermonkey addon in Firefox.

// ==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';
}
};
})();