vote up 0 vote down star

Hi Everyone, I've been trying to figure this out all morning and I just can't get anywhere with it.

I'm working on this website for a client and the dropdown menu just will not position properly in IE7. I have it working in everything else (even IE6!) but IE7 just will not play ball.

If there is anyone that could help that would be awesome!

The page(s) are at http://adriantrimble.com/mbf

Correct

IE7

Any help would be greatly appreciated!

Thanks,

Adrian

flag
1  
Just drop support for IE on your website (if only we could!). ;-) – Lucas McCoy Oct 2 at 18:50
Its funny you mentioned that. My colleague went to present this site to the client yesterday and the menu was all over the place in the clients browser, which was IE6. Thus, the hasty re-do of the menu. Thanks to Sir David of Lee and Mathachew! Fixed it – Adrian Trimble Oct 2 at 20:39

1 Answer

vote up 2 vote down check

Maybe you could try changing the subnav class so that the 'top' declaration has an actual number value instead of just 'auto'

So maybe something like this...

.subnav { left:auto; top:59px; }
link|flag
1  
This is close. You need to add top: 59px, but the left should be a defined pixel value since auto doesn't place it exactly where it needs to go. 0 will put it slightly to the left of where it falls when using auto in other browsers and IE8, so possibly left: 8px or so. – Mathachew Oct 2 at 20:08
Good point, for some reason I missed in the example that if was off on the left as well. – Sir David of Lee Oct 2 at 20:20
left: 0 works just fine, if its a few pixels off it doesn't matter, so long as it's under the top menu item and not way off to the right, I'm happy! – Adrian Trimble Oct 2 at 21:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.