Just a note for anyone who tries to do the same thing as me: Be sure that the <span> you use doesn't interfere with the <span> that superfish puts in to hold the arrows. otherwise, everything will go all screwy and you'll be able to see both arrows.
Alternately, if you remove the spans and use <a>text</a> like me, then be sure to remove the css styling the <span> that you removed. On Aug 26, 8:22 am, Joe <[EMAIL PROTECTED]> wrote: > Thanks Joel, > > Putting in blank anchors worked perfectly. > > thanks > > -Joe > > On Aug 25, 10:51 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > > > Hi Joe, > > > Be aware that by using spans instead of anchors you will be breaking > > keyboard access to the submenus. Maybe using an anchor without a href > > attribute would be a better option? If you still want to use spans > > then you could probably change this line: > > > if (o.autoArrows) addArrow( $('>a:first-child',this) ); > > > to this: > > > if (o.autoArrows) addArrow( $('>:first-child',this) ); > > > I just removed the 'a' from before ':first-child'. > > > Good luck. > > Joel Birch.