• Navigation
Results 1 to 2 of 2
  1. #1
    alsohawks

    ALL YOU YOUNG HACKEY
    PLAYERS OUT THERE

    Join Date
    Jul 2009
    Posts
    5,960
    BG Level
    8

    Script / Userstyle to change BG Page Width?

    Is anyone capable of doing this or know of something to use to do it? With a widescreen monitor it gets old shrinking the window to fit BG into more narrow, easier to read constraints and while Firefox extensions Columner and Dr. Body Narrow can change page widths, there doesn't seem to be an option to persistently change all of BG. Appreciate any help or advice.

  2. #2
    alsohawks

    ALL YOU YOUNG HACKEY
    PLAYERS OUT THERE

    Join Date
    Jul 2009
    Posts
    5,960
    BG Level
    8

    Figured it out, just edited a userstyle meant for a different site to my tastes. Changing the px on max-width makes it a fixed, centered width however wide you like:

    Code:
    /* BlueGartr.com - Fixed width centered edited from script by Avgust*/
    
    @namespace url(http://www.w3.org/1999/xhtml);
    @-moz-document domain("bluegartr.com")
    
    {
    body 
    {
    max-width: 1050px !important;
    margin: 0 auto !important;
    margin-top: 7px !important;
    }
    #overlay
    {
    width: 100% !important;
    }
    
    HTML
    {
    margin-left: -5px !important;
    }
    }