Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Style width

At 960px wide is there anyway of making the working part of the forum wider so it's less of a column?
I'm still using V 2.1

Comments

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    You are using an insecure vanilla version . Old versions are no longer supported here. Please update to 2.3 ASAP

  • Options
    R_JR_J Ex-Fanboy Munich Admin

    First you really should update your installation! It is irresponsible to not do that.

    Afterwards you should take a look at the header of your forum.

    Then, you can fine tune. By now the CSS for the width of the forum is the following:

    #Body {
      width: 960px;
    }
    #Content {
      680px;
    }
    

    If you want to have a width of 1200px for your new website, you should apply this css:

    #Body {
      width: 1200px;
    }
    #Content {
      920px;
    }
    

    1200 = 960 + 240 and therefore you should increase 680 by 240 => 920

    The easiest way to apply such small changes is to use the CSSEdit plugin. But you could also copy the theme you are using and change folder name, about.php to make it "your own" theme and do the changes in your copy of the custom.css

Sign In or Register to comment.