• Plugin Contributor pingram

    (@pingram3541)


    wpadmin menu bar covers up the file drop down selection menu. This is due to the wpadmin bar being fixed position since 2.8. You need to add a conditional to your script to check (if is_admin) or actually probably not even necessary since you need to be logged in to use this plugin, just add the following to your plugin master css file:

    #csidebar {
    top: 28px;
    }

    for now I added this to my style.css

    #csidebar {
    top: 28px !important;
    }

    http://wordpress.org/extend/plugins/wp-live-css-editor/

Viewing 1 replies (of 1 total)
  • Plugin Contributor pingram

    (@pingram3541)

    correction, we only want this on the right positioned side bar

    #csidebar.right {
    top: 28px !important;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘sidebar 28px top for wpadmin menu’ is closed to new replies.