views:

33

answers:

1

On this website: http://fa-aft6157.org/ , when viewed in IE8, when you hover the mouse over the links on the left they appear at the top of the page. How can this be fixed in the HTML code?

A: 

Whenever you position an element absolutely with css, the element is positioned relative to the closest parent that has position defined.

I think your problem has to do with the fact that all of your menu DIVs are direct children of BODY. You may have better luck placing your menu DIVs inside a parent DIV that has position defined.

Bryan Downing