When I open my site in IE6 the drop-down java sub menu are separated.
Return to Recent Questions
Q:
When I open my site in Internet Explorer 6.0 The main menu shows
up nicely but the drop-down sub-menus are separated. The menu work
very nicely in a Firefox browser but not in IE.
A:
There are some problems also with your css.
The problem is that the script can't get css properties of the object if they are described in separate .css block (or file).
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style
(style="position:relative"). To get the value you should move .css style into style="" attribute.
Please, try to add your
css file -> inline css, for example:
You should add style="position:relative;"
to the
<DIV id="right">
So, you'll have:
<DIV id=right style="POSITION: relative;">
Check that.
Return to Recent Questions
|