I a have a problem with toolbar

The message is hide for a toolbar.
Sorry for my english.
Thanks,
Rapha?l
The message is hide for a toolbar.
Sorry for my english.
Thanks,
Rapha?l
|
#2
|
|
If you grabbed the css for msg-div, it doesn't have a z-index set. If you bump it up, it should show over everything.
#msg-div {
position:absolute;
left:35%;
top:10px;
width:250px;
z-index:20000;
}
|