Forums

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

Home Forums CSS Transparent li and ul tags — menu issues

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #31952
    tannercampbell
    Participant

    Hey all,

    http://3rconcepts.com/test if you load this in IE9 you’ll notice that the menu system … for some crazy reason … manifests with a white background. Any thoughts on this? I’ve attempted applying background-color: none; as well as background: none; to the various li and ul classes in the css … no luck. What’s going on here?

    #55999
    TheDoc
    Member

    It is also happening in IE8, and presumably all versions of IE.

    It looks like it’s being applied to the li for sure. But why… Could be this:

    ul.MenuBarHorizontal
    {
    margin-top: 0px;
    margin-left: 3px;
    padding: 12px 0 0 0;
    list-style-type: none;
    font-size: 22px;
    font-family: Calibri, Arial, Helvetica, sans-serif;
    cursor: default;
    width: 100%px; /* COULD BE THIS */
    background-color: none;
    }
    #56001
    TheDoc
    Member

    I would also run your site through a validator – both the HTML and CSS have errors.

    #56002
    TheDoc
    Member

    “width: 100%px;” is not a valid width. IE could be thrown by the fact that it is an error.

    You can only declare % or px, not both.

    #56006
    TheDoc
    Member

    I think this is it:

    ul.MenuBarHorizontal li.MenuBarItemIE
    {
    display: inline;
    float: left;
    background: #FFF;
    }
    #55981
    TheDoc
    Member

    No problemo!

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