Guest User

Untitled

a guest
Feb 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. .glossymenu, .glossymenu li ul{
  2. list-style-type: none;
  3. margin: 0;
  4. padding: 0;
  5. width: 185px; /*WIDTH OF MAIN MENU ITEMS*/
  6. border: 1px solid black;
  7. }
  8.  
  9. .glossymenu li{
  10. position: relative;
  11. }
  12.  
  13. .glossymenu li a{
  14. background: white url(img/glossyback.gif) repeat-x bottom left;
  15. font: bold 12px Verdana, Helvetica, sans-serif;
  16. color: white;
  17. display: block;
  18. width: auto;
  19. padding: 5px 0;
  20. padding-left: 10px;
  21. text-decoration: none;
  22. }
  23.  
  24. .glossymenu li ul{ /*SUB MENU STYLE*/
  25. position: absolute;
  26. width: 190px; /*WIDTH OF SUB MENU ITEMS*/
  27. left: 0;
  28. top: 0;
  29. display: none;
  30. }
  31.  
  32. .glossymenu li ul li{
  33. float: left;
  34. }
  35.  
  36. .glossymenu li ul a{
  37. width: 180px; /*WIDTH OF SUB MENU ITEMS - 10px padding-left for A elements */
  38. }
  39.  
  40. .glossymenu .arrowdiv{
  41. position: absolute;
  42. right: 2px;
  43. background: transparent url(img/arrow.gif) no-repeat center right;
  44. }
  45.  
  46. .glossymenu li a:visited, .glossymenu li a:active{
  47. color: white;
  48. }
  49.  
  50. .glossymenu li a:hover{
  51. background-image: url(img/glossyback2.gif);
  52. }
Add Comment
Please, Sign In to add comment