Good enough, thanks very much Ryan. ” title=”Smiley” />
If you wanted to develop your css generator a bit further, could I suggest that you don’t let it assign an attribute to more than one class at a time?
For example, you produce this code:
[code:12x8soh2]#suckerfishnav li:hover ul ul, #suckerfishnav li:hover ul ul ul, #suckerfishnav li.sfhover ul ul, #suckerfishnav li.sfhover ul ul ul {
left:-999em
}[/code:12x8soh2]
Whereas it is eaiser to read (and possibly less prone to errors) to have each one produced separetly eg:
[code:12x8soh2]#suckerfishnav li:hover ul ul{
left:-999em
}
#suckerfishnav li:hover ul ul ul
left:-999em
}[/code:12x8soh2]
etc..
Also, the hex code created by the generator for colours should always be six digits, not three.
Sorry if it sounds pedantic, just a suggestion… ” title=”Smiley” />
I also whacked the mouseout value up to 2 secs, as the flyouts were disappearing a bit fast… a really, really good plugin though, so well done! ” title=”Smiley” />