Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 26th, 2012  |  syntax: None  |  size: 1.26 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /*********************
  2. //* jQuery Multi Level CSS Menu #2- By Dynamic Drive: http://www.dynamicdrive.com/
  3. //* Last update: Nov 7th, 08': Limit # of queued animations to minmize animation stuttering
  4. //* Menu avaiable at DD CSS Library: http://www.dynamicdrive.com/style/
  5. *********************/
  6.  
  7. .navmenu
  8. {
  9.   font: bold 12px Verdana;
  10.   font-size:11px;
  11.   border:1px solid #BBB;
  12.         width:685px;
  13.   background:url(http://development.rosenrotproductions.com/images/chromebg.gif) center center repeat-x;
  14. }
  15.  
  16. .navmenu ul
  17. {
  18.   margin:0;
  19.   padding:0;
  20.   list-style-type: none;
  21. }
  22.  
  23. .navmenu ul li
  24. {
  25.   position: relative;
  26.   display: inline;
  27.   float: left;
  28. }
  29.  
  30. .navmenu ul li a
  31. {
  32.   display: block;
  33.   padding: 8px 9px;
  34.   border-right: 1px solid #BBB;
  35.   text-decoration: none;
  36.   background:url(http://development.rosenrotproductions.com/images/chromebg.gif) center center repeat-x;
  37.   color:black;
  38. }
  39.  
  40. .navmenu ul li a:hover
  41. {
  42.   background:url(http://development.rosenrotproductions.com/images/chromebg2.gif) center center repeat-x;
  43. }
  44.  
  45. #nav_home
  46. {
  47.   border-left:1px solid #BBB;
  48.         margin-left:4px;
  49. }
  50.  
  51. body
  52. {
  53.   color:#333333;
  54.   direction:ltr;
  55.   font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
  56.   font-size:11px;
  57.   text-align:left;
  58.         background:white;
  59. }