Overlap menu bar, and other minor issues

Forums Forums Menus Overlap menu bar, and other minor issues

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1108
    Anonymous
    Member

    Hi, Im sure this is something simple, but on the site I am working on, the children are not dropping below(but overlapping main button), but every time I try to edit something, it doesnt change a bit.  site: http://www.designpi.com/cheshirepilatesx/

    Current Code below (I wish i had hung onto all the other codes i was playing with) –Menu is located in my "Sidebar.php
    "
    [code:1tq8nk0y]#suckerfishnav {
        background:#ffffff repeat-x;
        font-size:12px;
        font-family:verdana,sans-serif;
        font-weight:bold;
        width:100%;
        }
    #suckerfishnav, #suckerfishnav ul {
        float:left;
        list-style:none;
        line-height:40px;
        padding:0;
        border:1px solid #aaa;
        margin:0;
        width:100%;
        }
    #suckerfishnav a {
        display:block;
        color:#000000;
        text-decoration:none;
        padding:0px 10px;
        }
    #suckerfishnav li {
        float:left;
        padding:0;
        }
    #suckerfishnav ul {
        position:absolute;
        left:-999em;
        height:auto;
        width:101px;
        font-weight:normal;
        margin:0;
        line-height:1;
        border:0;
        border-top:1px solid #666666;
        }
    #suckerfishnav li li {
        width:99px;
        border-bottom:1px solid #666666;
        border-left:1px solid #666666;
        border-right:1px solid #666666;
        font-weight:bold;
        font-family:verdana,sans-serif;
        }
    #suckerfishnav li li a {
        padding:4px 10px;
        width:80px;
        font-size:12px;
        color:#000000;
        }
    #suckerfishnav li ul ul {
        margin:-21px 0 0 100px;
        }
    #suckerfishnav li li:hover {
        background:#000000;
        }
    #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:#ffffff;
        }
    #suckerfishnav li:hover a, #suckerfishnav li.sfhover a {
        color:#ffffff;
        }
    #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:#000000;
        }
    #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:#ffffff;
        }
    #suckerfishnav li:hover, #suckerfishnav li.sfhover {
        background:#000000;
        }[/code:1tq8nk0y]

    #7323

    Try removing the wrapping DIV and UL tag around your menu. ie: your theme probably has something like this in it:
    [code:1fnkuywt]<div class="suckertreemenu">
    <ul id="treemenu1">
    <?php pixopoint_menu(); ?>
    </ul>
    </div>[/code:1fnkuywt]

    Which you could try changing to:
    [code:1fnkuywt]
    <?php pixopoint_menu(); ?>
    [/code:1fnkuywt]

    If that doesn’t work, or causes other problems, try this instead:
    [code:1fnkuywt]<div class="suckertreemenu">
    <?php pixopoint_menu(); ?>
    </div>[/code:1fnkuywt]

    This is completely untested so it may or may not work.

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