Css problems

A

Anonymous

Guest
I've been racking my brain and cannot figure this out. In IE my images overlap the images. I need it to look like it does in mozilla.

http://www.squitosoft.com/demo/test.html

anyone have any suggestions?
 
are you setting your z-index properly?

div#1{
z-index:1;
}
div#2{
z-index:2;
}

#2 will always overlap #1 :wink:
 
Back
Top