Wider user sidebar on profile

Increases the width of the bar with user info on the right side of user's profiles. Allows for showing gold table without horizontal scrolling.

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         Wider user sidebar on profile
// @namespace    https://gazellegames.net/
// @version      1.0
// @description  Increases the width of the bar with user info on the right side of user's profiles.  Allows for showing gold table without horizontal scrolling.
// @author       monkeys
// @license      MIT
// @match        https://gazellegames.net/user.php*
// @icon         https://gazellegames.net/favicon.ico
// @homepage     https://greasyfork.org/en/scripts/554363-wider-user-sidebar-on-profile
// @grant        GM_addStyle
// ==/UserScript==

(function () {

  GM_addStyle ( `
    div#content {
      width: 1400px;
    }
  ` );

  GM_addStyle ( `
    div.main_column {
      width: calc(100% - 420px);
    }
  ` );

  GM_addStyle ( `
    div.sidebar {
      width: 400px;
    }
  ` );

  GM_addStyle ( `
    table#box_gold_scrollbar {
      width: 380px;
    }
  ` );

})();