Navigation Usability
  Home arrow Navigation Usability arrow Page 4 - Advanced Bulleted-List Menu
Codewalker Forums 
  Tutorials  
Database Articles  
Miscellaneous  
Navigation Usability  
PEAR Articles  
Programming Basics  
Server Administration  
XML Tutorials  
  Reviews  
Database Book Reviews  
Linux Book Reviews  
Miscellaneous Reviews  
PHP Book Reviews  
PHP Software Reviews  
Server Admin Reviews  
SQL Tool Reviews  
  Code Gallery  
Content Management Code  
Contest Code  
Counters Code  
Database Code  
Date Time Code  
Discussion Board Code  
Email Code  
File Manipulation Code  
GUI Code  
Link Farm Code  
Miscellaneous Code  
Search Code  
Site Navigation Code  
User Management Code  
Forums Sitemap 
Dedicated Servers  
Download TestComplete 
IBM® developerWorks
Weekly Newsletter 
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
NAVIGATION USABILITY

Advanced Bulleted-List Menu
By: notepad
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 3
    2005-05-06

    Table of Contents:
  • Advanced Bulleted-List Menu
  • Menu Layout
  • Preserving State Without Cookies
  • Adding CSS
  • Adding JavaScript
  • Drawing Our Menu
  • Conclusion

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    Advanced Bulleted-List Menu - Adding CSS


    (Page 4 of 7 )

    Before discussing how to draw our menu, we should discuss the styles and client-side functionality that we'll be taking advantage of. Both the JavaScript and the CSS for this menu are extremely simple.

    I've saved the following CSS code in a file called style.css, which isn't necessary but makes the overall code less bulky.

    ul {
      margin-left: 0;
      padding-left: 1em;
    }
    li {
      list-style-type: disc;
      list-style-image: url(down.png);
    }
    li.file {
      list-style-type: square;
      list-style-image: url(right.png);
    }
    a:link,
    a:active,
    a:visited {
      color: #000; 
      font-family: Verdana;
      font-size: 13px;
      text-decoration: none;
      background-color: #FFF;
      display: block;
      width: 125px;
      border: 1px solid #CCC;
    }
    a:hover {
      background-color: #CCC;
    }
    a:link.live,
    a:active.live,
    a:visited.live,
    a:hover.live {
      border: 1px dotted #808080;
    }

    In the ul definition above, we instruct our bulleted-list to un-indent a little bit. By default, the indentation is a little more than we want for a decent sized menu that contains more than one sub-tree.

    The li definitions say that we want to use our own images rather than the default circles and squares. The images I am using are down.png: and right.png: However you're welcome to use your own if you like.

    Next we setup how our hyperlinks should be styled, hover is separated for a nice mouseover effect. Then we style hyperlinks with the class attribute "live" which is the menu item currently activated (or the page we're currently viewing).

    Stylesheets are capable of so much, as seen here they can completely change the look of a dull bulleted-list into a very pretty menu. You could even modify the code to display the menu horizontally instead of vertically. But, don't do that because we're not finished yet!

    The stylesheet can be included into our page as follows.

    <link rel="stylesheet" title="default" href="style.css" />

    More Navigation Usability Articles
    More By notepad


       · I receive this error:Parse error: parse error, unexpected...
       · check that the menu array is layed out right using the print_r code. if not,...
       · So, dont laugh me..uhh, how can i define the pages data in the blist_menu.php,...
       · Hey notepad why didn't you put up a working example? I don't mean to be a pain in...
       · How can i modify the link target? can i use "iframe" tag in the...
       · finally i fucked up the target"=main". the right example is a...
       · try maybe escaping some parts of the url like ? etc., that might be the problem I...
       · You're a contract hacker and you make these n00b menues? Lol shame on you!Btw,...
       · just put an ) at the end of the wole array and keep doing that til the error is...
       · if u now put in a link u get a button!!...
       · if u now put in a link u get a button!!...
       · array('Menu One'=>array('Page One'=>'urlinkhere.php', ...
       · Hey,This is a cool tutorial and very useful,but why not let us know how to fetch...
       · Hey,This is a cool tutorial and very useful,but why not let us know how to fetch...
     

    NAVIGATION USABILITY ARTICLES

    - Advanced Bulleted-List Menu
    - Using Multiple Pages for Navigation






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway