Results 1 to 5 of 5

Thread: i need a navigation code...

  1. #1
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default i need a navigation code...

    I was wondering if anybody had a code for navigation, like this site does. if you do that would be great. thanks :]

  2. #2
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default

    there is also a navigation like that one on this site to www.swimchick.net

    does anyone have a code for it? that would be great!

  3. #3
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default

    anybody?

  4. #4
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Put the below in your page where you want the navigation. (Please note: this is just one link in the navigation table. Change the parts in red to suit your needs.)

    Code:
    <a href="url-to-page" class="nav"> Page title</a>
    Then place this in your css:

    Code:
    a.nav:link, a.nav:visited, a.nav:active {
         text-decoration: none;
         font-family: arial, helvetica, sans-serif;
         font-size: 8pt;
         line-height:13pt;
         color:#000000;
         background-color: #E5E5E5;
         cursor: default;
         display: block;
         margin: 0px;
         margin-bottom: 0px;
         padding: 3px;
         border-left: 7px solid #D60000;
         border-bottom:0px;
    }
    a.nav:hover {
         text-decoration: none;
         font-weight:none;
         font-family:arial, helvetica, sans-serif;
         font-size: 8pt;
         line-height: 13pt;
         color: #FFFFFF;
         background-color: #000000;
         cursor: default;
         display: block;
         margin: 0px;
         margin-bottom: 0px;
         padding: 3px;
         border-left: 7px solid #000000;
         font-style: normal;
    }
    Hope this helps.

  5. #5
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default

    OMG! thank you SOOOO MUCH! it works and I LOVE IT! THANKS!!!!!

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
  •