Suckerfish CSS menu options

Forums Forums Menus Suckerfish CSS menu options

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #118
    Anonymous
    Member

    In the above template example there are the following main menu options: Home, Pages, Categories and Archives. How do one add your ones own options or changes this to what ever one want; for example, lets say that I would like to have a main menu option called Company where that would be couple of sub menus. Is this possible?

    #2492

    You can add anything you want to your own menu, the sky is the limit! However if you are using the WordPress dropdowns plugin, you will not to have this functionality via the admin panel, you would need to hard code your menu into your theme. The latest beta version of the plugin does have this functionality built into the admin panel though.

    The CSS generated on this page is intended for unordered HTML lists. So if you create a valid unordered list on your page with an id of #suckerfishnav and include the CSS generated here, the dropdown will appear on your page.

    Here is an example of an unordered list which will display some top level navigation items and under products will display three items (Cars, Planes and Boats):

    [code:1q8xf3qv]<ul id="suckerfishnav">
    <li><a href="http://domain.com/" rel="nofollow">Home</a></li>
    <li><a href="" rel="nofollow">Products</a>
    <ul>
    <li><a href="http://domain.com/cars/" rel="nofollow">Cars</a></li>
    <li><a href="http://domain.com/planes/" rel="nofollow">Planes</a></li>
    <li><a href="http://domain.com//boats/" rel="nofollow">Boats</a></li>
    </ul>
    </li>
    <li><a href="http://domain.com/company/" rel="nofollow">Company</a></li>
    <li><a href="http://domain.com/about/" rel="nofollow">About</a></li>
    </ul>[/code:1q8xf3qv]

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.