I am currently using Metro CSS (Windows 8 style) and running into an issue. Within my container, there are alerts displayed in blue, and above that is 'IT-CENTER'. When I click on 'IT-CENTER', a button should appear, but it seems to be positioned behind the container. I have tried setting the z-index of the container to -1, but it does not seem to resolve the issue.
The dropdown list with the button for IT-CENTER: IT-CENTER
<li style="z-index:3"><a href="Login.aspx">התנתק</a></li>
</ul>
</div>
And here is the code for the container (the blue one):
<div id="alerts-container" style="z-index:-1">
<div id="toast-example1" class="toast toasttext02 fade in">
<button type="button" class="close" data-dismiss="alert"></button>
<div class="pull-left">
<div class="toast-object icon-info-4"></div>
</div>
<div class="toast-body" style="text-align:right">
(Note: closing tags are omitted in this snippet)
Any suggestions on how to solve this issue would be greatly appreciated. Thank you!