Results 1 to 2 of 2

Thread: need some help with nav. css

  1. #1
    Join Date
    Apr 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default need some help with nav. css

    well I looked all over the internet but I couldn't find anything I was looking for
    I like this style: http://www.dynamicdrive.com/style/cs...ointer-menu-2/

    but I want to mix it with like current msn nav style (i don't need any drop nav like in msn)

    thanks in advance for help, waiting for reply

  2. #2
    Join Date
    Apr 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    is there something wrong with this code before i copy&paste it to blogspot?
    Code:
    <html>
    <head>
    <style type="text/css">
    
    ul#list-nav {
     list-style:none;
     margin:0;
     padding:0;
     width:525px
     }
    
    ul#list-nav li {
     display:inline
     }
    
    ul#list-nav li a {
     text-decoration:none;
     padding:0;
     width:100px;
     background:BLUE;
     color:#eee;
     float:left;
     text-align:center;
     }
    
    ul#list-nav li a:hover {
     background:#FFFFFF;
     color:BLUE;
     }
    
    </style>
    </head>
    
    <body>
    
    <ul id="list-nav">
     <li><a href="#">BLOG</a></li>
     <li><a href="#">RSS</a></li>
     <li><a href="#">TWITTER</a></li>
     <li><a href="#">ARCHIVE</a></li>
     <li><a href="#">ABOUT</a></li>
     </ul>
    
    </body>
    </html>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •