Advertisement
tlynnec

Untitled

Jul 21st, 2011
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. /* AKA MENU BAR ACROSS TOP
  2. */
  3. #pages {
  4. height:30px;
  5. width:86%;
  6. background-color:#000000;
  7. margin-left:126px;
  8. margin-bottom:205px;
  9. opacity:0.8;
  10. font-weight:bold;
  11. }
  12.  
  13. #pages ul {
  14. display: inline; /* Added to fix the double margin in IE6 */
  15. list-style: none;
  16. }
  17.  
  18. #pages ul li {
  19. display: inline; /* Added to fix the double margin in IE6 */
  20. float:left;
  21. font-size: 85%;
  22. display:inline;
  23. width:123px;
  24. height:27px;
  25. color:#cccccc;
  26. padding:5px 0 0 0;
  27. margin: 0 3px 0 3px;
  28. }
  29.  
  30. #pages li ul, #pages li ul ul,
  31. #pages li ul ul, #pages li ul ul ul ul
  32. {
  33. position:absolute;
  34. float:left;
  35. left:-999em;
  36. background-color:#333333;
  37. text-decoration:none;
  38. font-weight:bold;
  39. }
  40.  
  41. #pages ul li a, #pages ul li a:visited,
  42. #pages ul li a:active, #pages ul li a:hover {
  43. color:#cccccc;
  44. text-decoration:none;
  45. display:block;
  46. }
  47.  
  48. #pages ul li:hover, #pages ul li a:hover {
  49. background-color:#333333;
  50. text-decoration:none;
  51. font-weight:bold;
  52. left:0;
  53. }
  54.  
  55. #current, li.current_page_item {
  56. background-color:#131313;
  57. color:#333333;
  58. font-weight:bold;
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement