Quote Originally Posted by tinorebel View Post
Hallo jettrue, thanks for your help

Here is the link: www.lamorhada.com/catalog
As I said, I found the pulldown menu moved to right in internet explorer...

I have been testing and looks as if in internet explorer the navigation heather where categopries drop down is floating to the right.....

I have been looking in the suport forum and found that the problem could have been in stilesheet.php where the size of the heather should be 100% an not 71 em.... I chec hed and this looked to be allright.

Maby I have been changing somenthing in stilesheet and I can solve it By replaicing with the original... Thanks for any idea
Try changing this section (remove the last */ also):

Code:
#dropMenuWrapperc {
	background:url(../images/shadowRight.png) repeat-y 100% 0;
	width:71em;
	margin:0 auto;
	position:absolute;
	height:2.18em;
	}

#dropMenuWrapperd {
	background:url(../images/shadowLeft.png) repeat-y 0 0;
	width:71em;
	margin:0 auto;
	position:absolute;
	height:2.18em;
	}
*/
to this:

Code:
#dropMenuWrapperc {
	background:url(../images/shadowRight.png) repeat-y 100% 0;
	width:71em;
	margin:0 auto;
	position:absolute;
	height:2.18em;
        left:0;
	}

#dropMenuWrapperd {
	background:url(../images/shadowLeft.png) repeat-y 0 0;
	width:71em;
	margin:0 auto;
	position:absolute;
	height:2.18em;
        left:0;
	}