WikiBeyondunreal unreadable

  • 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
Hello, im trying to read some tutorials and found the wiki webpages are shifted to the left of the screen making it unreadable, zooming out my browser does not work.


OhDearOhMy.jpg
 

fudg0naut

New Member
Jun 23, 2023
1
1
1
56
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?

margin-left.png
 
  • Like
Reactions: Animus

Animus

bladiebladibla
Sep 24, 2004
268
2
18
38
in Manta under water
broke my keyboard in half out of anger because the search function of the inspect function does not work. I had to select (column content) line.



UnrealWikiFix.jpg
 

Animus

bladiebladibla
Sep 24, 2004
268
2
18
38
in Manta under water
this sites also work i geuss. But i don"t know if they are exactly the same https://beyondunrealwiki.github.io/index.html and https://unrealwiki.unrealsp.org/index.php/Main_Page

or this fix i got from Metallicafan212 using violentmonkey plugin with Firefox
// ==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&*" />');
})();
 

Animus

bladiebladibla
Sep 24, 2004
268
2
18
38
in Manta under water
somehow the last script did not work anymore for me but this one does
// ==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';
}
};
})();