How can I set the display order of layers??
I want a layer that is visible when a link is hoovered to be on top of another....
/Smirre
Printable View
How can I set the display order of layers??
I want a layer that is visible when a link is hoovered to be on top of another....
/Smirre
Have a look for the documentation on ZOrder.
In Css
div1 {z-order:1;}
In DOM
document.getElementById('div1').style.zorder = '1';
sorry, that z-index ;)