Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Nav Menu craps the bed in I.E.

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #25102
    takeiteasy04
    Member

    Hello, I’m pretty new to this stuff, so any help at all is MUCH appreciated.

    Well, the title kinda says it all. In FF, the menu works fine. In I.E. however (I’ve only tested in I.E. 7), The menu appears staggered, almost like stairs. Unfortunately, the "stairs" end up going down and "underneath" the main content area of the page, rendering them inaccessible, not to mention ugly as sin.

    Both the CSS and HTML validated transitional, and they both passed the "browser compatibility" test in Dreamweaver.

    Any ideas?

    Here’s the CSS of the Nav Menu:

    Code:
    div#header ul#header_nav {
    width: 720px;
    margin: 0px 20px 0px 0px;
    list-style: none;
    }
    ul#header_nav li a {
    display: block;
    width: 180px;
    margin-top: 120px;
    text-align: center;
    color: #FFF;
    font-size: 12pt;
    text-decoration: none;
    letter-spacing: 0.3em;
    float: left;
    font-weight: bold;
    }
    ul#header_nav li a:hover {
    color: #9EC1E1;
    }
    ul#header_nav li#current a {
    color: #9EC1E1;
    }

    Here’s the site: http://www.hebtech.com

    Here’s the complete CSS: http://hebtech.com/index_styles.css

    #58943
    Rob MacKay
    Participant

    try adding:

    Code:
    #header_nav li {
    display:block;
    float:left;
    }

    and see what happens… :D

    #58946
    takeiteasy04
    Member

    You sir, truly are a warrior.

    Thanks a million!

    #58990
    Rob MacKay
    Participant
    "takeiteasy04" wrote:
    You sir, truly are a warrior.

    Thanks a million!

    no probs sir :) <bow />

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.