Not working correctly in IE

Forums Forums Menus Not working correctly in IE

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #478
    Anonymous
    Member

    I looked at other posts but could not find a similar problem. Everything works fine in FF but in IE the dropdown "shutters" and will flicker off. I worked pretty hard to configure my css so this kinda sucks. Anyway I love the plugin and I’m sure this will be an easy fix. My site is http://www.businessopp4you.com and the dropdown is on the Products page. Here is my css

    #suckerfishnav {
        background:url(images/)  center center no-repeat;
        font-size:20px;
        font-family:verdana,sans-serif;
        font-weight:bold;
        float: left;
        width: 900px;
        height: 45px;
        }
    #suckerfishnav, #suckerfishnav ul {
        float:left;
        list-style:none;
        line-height:40px;
        padding:0px;
        margin: 0px;
        width:100%;
        }
    #suckerfishnav a {
        display:block;
        color:#00a8ee;
        text-decoration:none;
        padding:0px 7px;
        }
    #suckerfishnav a:hover {
    color: #180bf6;
        }
    #suckerfishnav li {
        float:left;
        padding:0px 0px 0px 0px;
        }
    #suckerfishnav ul {
        position:absolute;
        left:-999em;
        width:80px;
        font-weight:normal;
        margin: -12px 0px 0px 10px;
        line-height:1;
        border:0;
        border-top:1px solid #180bf6;
        }
    #suckerfishnav li li {
        width:80px;
        margin: 0px 0px 0px 0px;
        padding:3px 3px 3px 3px;
        border-bottom:1px solid #180bf6;
        border-left:1px solid #180bf6;
        border-right:1px solid #180bf6;
        font-weight:normal;
        font-family:verdana,sans-serif;
        background: #c9eefa;
        }
    #suckerfishnav li li a {
        padding:0px 0px;
        width:80px;
        font-size:12px;
        color:#180bf6;
        }
    #suckerfishnav li ul ul {
        margin:-28px 0px 0px 83px;
        font-size:10px;
        height:auto;
        }
    #suckerfishnav li li:hover {
        background: ;
        }
    #suckerfishnav li ul li:hover a, #suckerfishnav li ul li li:hover a, #suckerfishnav li ul li li li:hover a, #suckerfishnav li ul li li li:hover a {
        color:;
        }
    #suckerfishnav li:hover a, #suckerfishnav li.sfhover a {
        color:;
        }
    #suckerfishnav li:hover li a, #suckerfishnav li li:hover li a, #suckerfishnav li li li:hover li a, #suckerfishnav li li li li:hover li a {
        color:;
        }
    #suckerfishnav li:hover ul ul, #suckerfishnav li:hover ul ul ul, #suckerfishnav li:hover ul ul ul ul, #suckerfishnav li.sfhover ul ul, #suckerfishnav li.sfhover ul ul ul, #suckerfishnav li.sfhover ul ul ul ul {
        left:-999em;
        }
    #suckerfishnav li:hover ul, #suckerfishnav li li:hover ul, #suckerfishnav li li li:hover ul, #suckerfishnav li li li li:hover ul, #suckerfishnav li.sfhover ul, #suckerfishnav li li.sfhover ul, #suckerfishnav li li li.sfhover ul, #suckerfishnav li li li li.sfhover ul {
        left:auto;
        background:;
        }
    #suckerfishnav li:hover, #suckerfishnav li.sfhover {
        background:;
        }

    #4301

    I think your problem is probably caused by you placing the menu inside another list. Try removing the wrapping list, if that doesn’t work then let me know and I’ll take a closer look:

    You current having something like this in your code:
    [code:32nzkbr4]
    <ul>
    <li>
    <?php suckerfishnav(); ?>
    </li>
    </ul>
    [/code:32nzkbr4]

    However it should look something like this:
    [code:32nzkbr4]
    <?php suckerfishnav(); ?>
    [/code:32nzkbr4]

    #4302
    Anonymous
    Member

    I removed the list tags from my header code but it did not change. I also removed the division tag but there was no change so I put the div tag back. I am pretty new to programming so I’m not sure how to fix it. IE users are over half my traffic. I have nav links on the pages so users can still get around. Any help (more) will be appreciated.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.