Advertisement
Guest User

Untitled

a guest
Feb 28th, 2012
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. /* =Menu
  2. -------------------------------------------------------------- */
  3.  
  4. /* In header.php rename #access to #nav */
  5.  
  6. #nav {
  7.     background: #000;
  8.     display: table;
  9.     float: left;
  10.     margin: 0 auto;
  11.     width: 940px; height:auto;
  12. }
  13. #nav .menu-header,
  14. div.menu {
  15.     font-size: 13px;
  16.     margin-left: 0px;
  17.     width: 928px;
  18. }
  19. #nav .menu-header ul,
  20. div.menu ul {
  21.     list-style: none;
  22.     margin: 0;
  23. }
  24. #nav .menu-header li,
  25. div.menu li {
  26.     float: left; position: relative;
  27.     margin:0
  28. }
  29. #nav a {
  30.     color: #fff; font:bold 11px arial;
  31.   text-transform:uppercase;
  32.     display: table;
  33.     line-height: 38px;
  34.     padding: 0 10px;
  35.     text-decoration: none;
  36. }
  37.  
  38.  
  39.  
  40. #nav li.green a {background:green}
  41. #nav li.pink  a{background:pink}
  42. #nav li.blue  a{background:blue}
  43.  
  44.  
  45. #nav ul ul  {display:none;  position: absolute;
  46.     top: 38px;
  47.     left: 0;
  48.   float: left;
  49.   width: 180px;
  50.     z-index: 9999;}
  51.  
  52.  
  53. #nav ul li.current-menu-item > ul,
  54. #nav ul li.current-category-ancestor > ul,
  55. #nav ul li:hover > ul
  56.  { display: block;}
  57.  
  58. #nav ul li:hover > ul
  59.  { position: absolute;
  60.     top: 38px;
  61.     left: 0;
  62.     float: left;
  63.     width: 180px;
  64.     z-index: 99999;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement