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.
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.
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.
That works, and it sure made me feel stupid! Thanks!
Is there a way to restrict who can upload and who cannot?
This topic has been closed to new replies.