Site Problems in IE. help!

Hi,

site URL: www.wusice.org/voice

I’m just started making websites. I checked my site in IE, and realized that:

  1. the Navigation is floated to the top, some of it not able to be seen
  2. the slideshow caption changes height
  3. the slideshow group has a grey background? or border? around it.

However, these instances are not apparent in Firefox or Chrome. I tried using Firebug Lite to identify the problem, but to no avail.

If you could help me figure out where the problem is, that would be great. Thank you!
Kelsey

Which version of IE are you looking at? There are 4 in common use, each very different.

PS: welcome to SitePoint. :slight_smile:

Thanks! Sorry for the late reply. I am using IE 7. Should I d/l the latest version of IE and try it out?

And thanks for the welcome!
Kelsey

One thing you could do is remove all this:

#main-nav ul {
  width: 540px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#main-nav ul {
  position: relative;
  z-index: 1000;
}

and instead try this:

#main-nav ul {
  bottom: -10px;
  position: absolute;
  right: 0;
  width: 540px;
}

May or may not work with IE7 (I’m not much good at debugging that unless I can edit the code) but might be a more reliable method.