Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. nav ul {
  2. margin: 0px;
  3. padding: 6px 10px 0px 0px;
  4. z-index: +10;
  5. list-style: none;
  6. }
  7.  
  8. nav li {
  9. float: right;
  10. margin-right: 0px;
  11. width: 83px;
  12. height: 49px;
  13. }
  14.  
  15. nav li a, nav li a:visited {
  16. color:#343946;
  17. text-decoration: none;
  18. font-family: helvetica;
  19. font-size: 11px;
  20. }
  21.  
  22. nav li a:hover {
  23. color:#30b59b;
  24. text-decoration: none;
  25. font-family: helvetica;
  26. font-size: 11px;
  27. }
  28. nav a.destinationpic, nav a.contactpic,
  29. nav a.gallerypic, nav a.foodpic, nav a.homepic {
  30. display: block;
  31. width: 50px;
  32. height: 49px;
  33. text-decoration: none;
  34. padding-top: 52px;
  35. }
  36.  
  37. nav a.destinationpic:hover, nav a.contactpic:hover,
  38. nav a.gallerypic:hover, nav a.foodpic:hover, nav a.homepic:hover {
  39. background-position: -50px;
  40. }
  41.  
  42. nav a.homepic {
  43. background: url("../images/home2.png") 0 0 no-repeat;
  44. }
  45.  
  46. nav a.destinationpic {
  47. background: url("../images/des2.png") 0 0 no-repeat;
  48. }
  49.  
  50. nav a.contactpic {
  51. background: url("../images/con2.png") 0 0 no-repeat;
  52. }
  53.  
  54. nav a.gallerypic {
  55. background: url("../images/gall2.png") 0 0 no-repeat;
  56. }
  57.  
  58. nav a.foodpic {
  59. background: url("../images/food2.png") 0 0 no-repeat;
  60. }
  61.  
  62. <nav>
  63. <div class="headerloc">
  64. <img src="images/headerlog.png" width="251 px" height="68 px">
  65. </div>
  66. <div align="center">
  67. <ul>
  68. <li><a href="contact.html" class="contactpic">Contact</a>
  69. </li>
  70. <li><a href="#"><img src="images/gallactive.png">Gallery</a>
  71. </li>
  72. <li><a href="food.html" class="foodpic">Food</a>
  73. </li>
  74. <li><a href="destinations.html" class="destinationpic">
  75. Destinations</a>
  76. </li>
  77. <li><a href="indeckz.html" class="homepic">Home</a>
  78. </li>
  79. </ul>
  80. </div>
  81. </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement