Full width OSRS Wiki

Hides the left sidebar on OldSchool RuneScape Wiki for screen widths under 768px

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Full width OSRS Wiki
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hides the left sidebar on OldSchool RuneScape Wiki for screen widths under 768px
// @match        https://oldschool.runescape.wiki/*
// @grant        GM_addStyle
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
        @media (max-width: 768px) {
            /* Hide the left sidebar */
            #mw-navigation {
                display: none !important;
            }
            /* Expand the main content to use full width */
            #mw-page-base,
            #mw-head-base,
            #content,
            #mw-head,
            #p-personal {
                margin-left: 0 !important;
            }
        }
    `);
})();