hi my site is not working properly with ie7....firefox and opera are fine......
plz see it....
i'm using ddsmoothmenu from dynamicdrive.com
hi my site is not working properly with ie7....firefox and opera are fine......
plz see it....
i'm using ddsmoothmenu from dynamicdrive.com
A common IE7-only symptom is a drop-down menu sitting on top of the logo even though other browsers show the correct order. and rightly asked for details, and 's observation about seeing the menu over the logo in IE7 compatibility mode points to a stacking/z-index problem rather than a JavaScript failure.
Practical diagnostic steps and fixes:
Reproduce in genuine IE7 (or use IE8/9 F12 tools set to IE7 mode) so you are fixing the exact rendering.
Inspect which element actually has a z-index and whether that element (or any ancestor) is positioned. In older IEs a positioned ancestor creates a new stacking context, so a child with a high z-index can appear above unrelated ancestors.
Simple, reliable fix is to give the header/logo wrapper a positioned context and a higher z-index than the menu. Example pattern:
/* ensure header/logo sits above the menu */
#header { position: relative; z-index: 999; }
#topnav { position: relative; z-index: 100; } If ddSmoothMenu or its CSS assigns very large z-index values to menu items, reduce those or move the z-index to the menu container instead of deep children.
Additional tips:
Jump to Post— peter_budo 2,532This is hardly an explanation of error!
This is hardly an explanation of error!
plz elaborate what you wanted to say.......if its an error than y is it working fine in chrome and mozzilaa.....and even in ie8
hi my site is not working properly with ie7....firefox and opera are fine......
Elaborate on "not working". That means nothing. What's not working?
As a side note, IE6 is not compatible with your site as it cannot render png images.
Elaborate on "not working". That means nothing. What's not working?
As a side note, IE6 is not compatible with your site as it cannot render png images.
The menu in 7 mode is over the logo. If you switch compatibility mode in IE8 you can see it. Usually this issue is the other way around. I haven't seen a site that worked in 8 but not in 7. Very interesting...
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.