How do I make an html div tag to be on top of everything?
For z-index:1000 to have an effect you need a non-static positioning scheme.
z-index:1000
Add position:relative; to a rule selecting the element you want to be on top
position:relative;