• I was wondering if there is a plugin/widget which enables the admin to change the order of the menu items (pages) Also can I change the output of the way it handles subpages as at the moment it outputs:

    <ul>
     <li><a href="foo.php">foo</a>
      <ul>
       <li><a href="bar.php">bar</a></li>
      </ul>
     </li>
    </ul>

    Where I would prefer for CSS purposes that it appears like this:

    <ul>
     <li><a href="foo.php">foo</a></li>
     <li>
      <ul>
       <li><a href="bar.php">bar</a></li>
      </ul>
     </li>
    </ul>

    Any advice?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Ordering menu items’ is closed to new replies.