Sorry, you will also need something like this just *before* that
declaration:
.nav li li li:hover ul, /* pure CSS hover is removed below */
ul.nav li li li.sfHover ul {
left:9.45em;
top:-1px;
}
Joel Birch.
On 13/07/2007, at 12:53 AM, Joel Birch wrote:
Hi Arjan,
You probably need to add the new level to the hover override
declaration. So change this CSS:
/*following rule negates pure CSS hovers
so submenu remains hidden and JS controls
when and how it appears*/
.superfish li:hover ul,
.superfish li li:hover ul {
top:-999em;
}
... to this:
/*following rule negates pure CSS hovers
so submenu remains hidden and JS controls
when and how it appears*/
.superfish li:hover ul,
.superfish li li:hover ul,
.superfish li li li:hover ul { /* <-- added new level of menu
here */
top:-999em;
}
Let me know if it doesn't work.
Joel Birch.
On 13/07/2007, at 12:02 AM, fr0sty wrote:
Hello,
Im trying to add an extra (third) level to the example that's posted
here
http://users.tpg.com.au/j_birch/plugins/superfish/
I have my own edited example on http://www.onbereikbaar.nl/menu i've
added an extra level to the menu, but it shows rightaway, can anyone
tell me what i need to change in the css file so this will work?
Tnx Arjan