Thanks, but I now realize my question was not terribly clear.

Superfish has the autoArrows option, but that adds arrows to ALL the
list items having sub list items, at any level. What I would like is
to only add arrows (with Superfish's autoArrow option) to list items
that happen to have a sub-level of ul li, but that are NOT at the top
level.

<ul id="nav">
  <li>Item</li>
  <li><a href="#">Item 1</a>DON'T ADD ARROW HERE
    <ul>
      <li><a href="#">Item</a> ADD ARROW HERE
        <ul>
          <li>Item</li>
          <li>Item</li>
          <li>Item</li>
        </ul>
      </li>
      <li><a href="#">Item</a></li>
      <li><a href="#">Item</a></li>
     </ul>
  </li>
</ul>

Reply via email to