I'm having an issue with a div that should appear in the center of the screen when a button is pressed. Here is the CSS code I am using:
#box {
width: 490px;
left:50%;
margin-left:-245px;
height: 200px;
top:50%;
margin-top:-100px;
background: #302d1a;
border: 1px solid #313131;
color: #ffffff;
text-align: left;
position:fixed ;
z-index: 9999;
}
While this code works perfectly in Opera, Chrome, and Firefox, it seems to have some trouble in Internet Explorer version 6.0. Any suggestions on how to fix this issue would be greatly appreciated!
Thank you for your assistance :)