• Isn’t it annoying when your admin menu scrolls out of view when you scroll down on the page? Then you have to scroll up again to get to the menu.

    This very simple hack will keep the admin menu visible at all times:

    Back up the file /wp-admin/wp-admin.css, so you can restore the original if you mess up.

    Now open /wp-admin/wp-admin.css

    Find the section called /* side admin menu */

    Insert a couple blank lines, and paste the following:

    #adminmenu {
    	position: fixed;
    }

    DONE!

    Only applies to WordPress 2.7. I’ve had no problems with this yet, but of course you make changes to the WordPress core at your own risk. Enjoy!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter johnywhy

    (@johnywhy)

    note, if your plugins add more options to your admin menu, such that the whole thing does not fit on your screen, then you won’t be able to use this hack.

    Thread Starter johnywhy

    (@johnywhy)

    i love how this works with the admin-menu in collapsed mode. i think this hack is so awesome, it should be built into the WP core.

    Matt/WP, where’s the “vote to include this in the wp core” button??

    ??

    Thread Starter johnywhy

    (@johnywhy)

    this no longer works with wp 2.7.1

    i’d be delighted if someone can create a work-around

    This works in FF3… but fubar in IE7
    I repeat, only works in Firefox. And I’m too lazy to look for the fix.

    /wp-admin/css/global.css (line 86)

    #adminmenu
    clear:left;
    float:left;
    list-style-image:none;
    list-style-position:outside;
    list-style-type:none;
    margin:15px 5px 15px -160px;
    padding:0;
    position:fixed;
    width:145px;

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How To Keep Admin-Menu Visible When You Scroll Down’ is closed to new replies.