Sidebar not displaying

Issue #1 new
Evan Markowitz created an issue

Tested in Chrome Version 33.0.1736.2 dev-m, sidebar menu items not properly displaying

Example

Comments (5)

  1. Riot

    Ultimately yes, but we've modified our mediawiki somewhat from the stock configuration, and we inject user registrations into it directly as part of our registration process - so it's cross-linked to many other scripts throughout the system. An upgrade would require the rewrite of various other legacy systems, and reverse-engineering the account creation system on the later mediawiki versions to fit. It's not a high priority at the moment.

  2. Richard Bowey

    Maybe a fix to a very old issue but this has been bugging me for a while and so I did the deed. Tested on both Chrome and Firefox by me and Ted.

    div#globalWrapper {
        display: flex;
        flex-wrap: wrap;
    }
    
    div#globalWrapper #column-one {
        order: -1;
        padding: 160px 10px 10px 10px;
    }
    
    div#globalWrapper #column-content {
        width: calc(100% - 20px);
        margin: 0 0 .6em -12.2em !important;
    }
    
    #footer {
        width: 100%;
    }
    

  3. Log in to comment