• Resolved brianbonner

    (@brianbonner)


    Does anyone know how to get rid of that upload nonsense in the write section in 2.0? I have no use for it and it takes up valuable real estate.

Viewing 4 replies - 1 through 4 (of 4 total)
  • i’m also looking for a solution to this annoyance. anyone?

    ok, after a little tinkering, i figured out that if you open /wp-admin/wp-admin.css and go to line 162, you’ll find the ID “uploading”. modify it from this:

    #uploading {
    border-style: none;
    padding: 0px;
    margin-bottom: 16px;
    height: 15em;
    width: 100%;
    /* overflow-y: hidden;*/
    }

    to this:

    #uploading {
    display: none;
    /*
    border-style: none;
    padding: 0px;
    margin-bottom: 16px;
    height: 15em;
    width: 100%;
    overflow-y: hidden;
    */
    }

    that should get rid of the clunky upload box.

    Thread Starter brianbonner

    (@brianbonner)

    That works, and it sure made me feel stupid! Thanks!

    Is there a way to restrict who can upload and who cannot?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WP 2.0 Remove Upload in Write Window’ is closed to new replies.