Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. .nav {
  2. width: 100%;
  3. height: 84px;
  4. float: left;
  5. background: #333;
  6.  
  7. min-width: 960px; /* or whatever width you need */
  8. }
  9.  
  10. <html>
  11. <head>
  12. <style>
  13. body { text-align: center; }
  14. #container { width: 960px; margin: 0 auto; }
  15. #nav { overflow: hidden; list-style: none; padding: 0; margin: 0; background: #333; }
  16. #nav li { float: right; }
  17. #nav li.logo { float: left; }
  18. #nav li a { display: block; padding: 0px 22px; color:#FFF; background: #333; text-align:center; line-height:84px; font-family: 'open_sansbold'; font-size:80%; }
  19. #nav li.logo a { width: 317px; height: 84px; background:url('img/lifesign.png') red; }
  20. </style>
  21. </head>
  22. <body>
  23. <div id="container">
  24. <ul id="nav">
  25. <li class="logo"><a href="home.htm"></a></li>
  26. <li><a href="contact.htm">CONTACT</a></li>
  27. <li><a href="contact.htm">GET INVOLVED</a></li>
  28. <li><a href="contact.htm">Q+A</a></li>
  29. <li><a href="contact.htm">HOW IT WORKS</a></li>
  30. <li><a href="contact.htm">WHO WE ARE</a></li>
  31. </ul>
  32. <div id="main">
  33. <!-- page content here -->
  34. </div>
  35. </div>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement