views:

30

answers:

2

Hi, I am developing web with wordpress and have a problem with it's submenu. The problem is that it doesn't appear with hover on IE6. There must be something wrong with css, i guess. Any ideas? Is this possible to be done without javascript?

as i understand the problem is with #access ul ul { display:none; } as i delete it, it shows allways the submenu.. is there ny way to change it into something?

A: 

Nope it is not possible without javascript at least in IE6, you need javascript for IE6 :(

Here are some options for you:

IE6 Hover Issue

Sarfraz
Does it add :hover support on all elements? Judging by the documentation, all CSS3Pie can do is add certain CSS3 specific declarations, which :hover isn't.
Gordon
@Gordon: I am not sure for that but here are some other options: http://stackoverflow.com/questions/2571073/ie6-hover-issue
Sarfraz
@sAc Well, I know there is other options :) Just doubting CSS3Pie as a solution. On a sidenote, when you asked the same question yourself once, why no closevote on this one?
Gordon
@Gordon: Good point forgot that, let's do it now :)
Sarfraz
+2  A: 

My guess since I don't have the code is that the submenu is using li:hover to cause the submenu to appear. IE6 only supports the :hover pseudoclass on <a> tags (only a:hover will work in IE6).

Check out CSS Play for some CSS only dropdown menu examples.

Pat