i had developed joomla site,Yogamother.com. In this site top menu have drop down menu. this menu show all other browsers. but it not show in internet explorer 6. And also some articles that don't appear in internet explorer.(yoga dictionary,what is yoga) please advise me. how can i require it.
Thanks
I don't have IE6 on anything so I am using DebugBar's IETester so I can't guarantee that I am seeing the same thing as real IE6. That said, it looks like a z-index problem to me. In IETester you can select the area the menu is supposed to be in and it will copy all of the next from the menu. It would appear that the menu is under the background image for some reason.
You should seriously consider getting rid of the tables as well. Your design is not particularly complicated and would be easy to write tableless. It will speed up the rendering and clean up your code considerably.
Maybe it has something to do with IE6 position problems when using "width:100%" ?
IE Troubleshoot
There Should be MARKUP ERROR in your Joomla template.So please check your markup tags are opened and closed correctly.
You can validate your markup in W3c Validator
http://validator.w3.org/
You also can Troubleshoot some other script problem ... Some are the common mistakes listed here, http://lifescaler.com/2008/05/ie-object-required-error-and-other-common-coding-mistakes/
I hope This will helpful to you
I suggest adding this to your CSS:
The Star HTML hack will ensure that only IE6 gets this style. The
zoom: 1
gives the menu "layout", a mysterious property that fixes lots of things in IE6. (I've tested this by adding it to your site using the IE Web Developer Toolbar.)After doing this, you'll see the menu is shifted up by about 30px. There is a
<hr>
in your menu HTML (in the "Video" section) that is causing extra space below the menu. I suggest removing this<hr>
, or at least hiding it withdisplay: none
for IE6.