Results 1 to 2 of 2

Thread: Menu error when back button pressed

  1. #1
    Join Date
    Mar 2011
    Posts
    2,144
    Thanks
    59
    Thanked 116 Times in 113 Posts
    Blog Entries
    4

    Default Menu error when back button pressed

    Hi everyone,

    I've been surfing the internet and found this
    HTML Code:
    <html>
    <head>
    </head>
    <body>
    
    
    <body style="background-color:lightgreen">
    
    <center>
    <ul id="list-nav">
    <li><a href="#">Home</a></li>
    <li><a href="#">About Us</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Products</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </center>
    <style type="text/css">
    
    ul#list-nav {
    list-style:none;
    margin:20px;
    padding:0;
    width:525px
    }
    
    ul#list-nav li {
    display:inline
    }
    
    ul#list-nav li a {
    text-decoration:none;
    padding:5px 0;
    width:100px;
    background:#485e49;
    color:#eee;
    float:left;
    text-align:center;
    border-left:1px solid #fff;
    }
    
    ul#list-nav li a:hover {
    background:#a2b3a1;
    color:#000
    }
    
    
    </style>
    </body>
    </html>
    It's a bar of links that goes across the top of a page. It works fine unless you visit another page then go back to it using the back button. Then the links go diagonal and it goes wierd. Any help would be appreciated
    Last edited by keyboard; 07-25-2011 at 10:14 PM.

  2. #2
    Join Date
    Jul 2011
    Location
    Denmark
    Posts
    18
    Thanks
    1
    Thanked 4 Times in 4 Posts

    Default

    Try this

    HTML Code:
    <style type="text/css">
    #nav li {
    	list-style-type: none;
    	float: left;
    }
    
    #nav li A {
    	background: #485e49;
    	color: #EEE;
    	text-decoration: none;
    	padding: 6px 8px 6px 8px;
    	border-right: 1px solid #FFF;
    }
    
    #nav li A:hover {
    	background: #a2b3a1;
    	color: #000;
    }
    </style>
    
    <ul id="nav">
        <li><a href="#">Home</a></li>
        <li><a href="#">About Us</a></li>
        <li><a href="#">Services</a></li>
        <li><a href="#">Products</a></li>
        <li><a href="#">Contact</a></li>
    </ul>
    Toby

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
  •