> Anyone know of a quick way to apply auto arrows to ONLY the sub menus,
> while leaving the top-level list items sans-arrow?

I'm not what kind of arrows you would need, but I suppose you are able
to add them via CSS.
(And yes, this isn't really jQuery related. This is a CSS issue)

For a HTML like this:
<ul id="nav">
  <li>
    <a href="#">Item 1</a>
    <ul>
      <li><a href="#">Sub Item 1</a></li>
      <li><a href="#">Sub Item 2</a></li>
      <li><a href="#">Sub Item 3</a></li>
    </ul>
    ...
</ul>

CSS
#nav li li { background: url(arrow.gif) no-repeat 0 50%; padding-left: 10px; }

Using CSS descendant selectors you can style only the grand children
list-elements of the list.


-- 
Andrei Eftimie
http://eftimie.com
+40 758 833 281

Punct
http://designpunct.ro

Reply via email to