Forums

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

Home Forums CSS menu li floating behind content

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #43854

    Hello I have a CSS menu that trying to work out getting close but just have one problem the sub menu is floating behind the main content http://www.mwbcomputers.com.au for a example

    #menu ul { margin: 0; padding: 0;}
    #menu li { margin: 0; padding: 0;}
    #menu a { margin: 0; padding: 0;}
    #menu ul {list-style: none;}
    #menu a {text-decoration: none;}
    #menu {height: 40px; background-color: rgb(35,35,35); box-shadow: 0px 2px 3px rgba(0,0,0,.4);}

    #menu > ul > li {
    float: left;
    margin-left: 15px;
    position: relative;
    }

    #menu > ul > li > a {
    color: rgb(160,160,160);
    font-family: Verdana, ‘Lucida Grande’;
    font-size: 15px;
    line-height: 40px;
    padding: 15px 20px;
    -webkit-transition: color .15s;
    -moz-transition: color .15s;
    -o-transition: color .15s;
    transition: color .15s;
    }

    #menu > ul > li > a:hover {color: rgb(250,250,250); }

    #menu > ul > li > div {
    opacity: 0;
    visibility: hidden;
    padding: 16px 0 20px 0;
    background-color: rgb(250,250,250);
    text-align: left;
    position: absolute;
    top: 55px;
    left: 50%;
    margin-left: -90px;
    width: 180px;
    -webkit-transition: all .3s .1s;
    -moz-transition: all .3s .1s;
    -o-transition: all .3s .1s;
    transition: all .3s .1s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
    -moz-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
    box-shadow: 0px 1px 3px rgba(0,0,0,.4);
    }

    #menu > ul > li:hover > div {
    display: table;
    }

    #menu > ul > li:hover > div {
    opacity: 1;
    top: 65px;
    visibility: visible;
    }

    #menu > ul > li > div:before{
    content: ”;
    display: block;
    border-color: transparent transparent rgb(250,250,250) transparent;
    border-style: solid;
    border-width: 10px;
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
    }

    #menu > ul ul > li { position: relative;}

    #menu ul ul a{
    color: rgb(50,50,50);
    font-family: Verdana, ‘Lucida Grande’;
    font-size: 13px;
    background-color: rgb(250,250,250);
    padding: 5px 8px 7px 16px;
    display: block;
    -webkit-transition: background-color .1s;
    -moz-transition: background-color .1s;
    -o-transition: background-color .1s;
    transition: background-color .1s;
    }

    #menu ul ul a:hover {background-color: rgb(240,240,240);}

    #menu ul ul div {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -16px;
    left: 206px;
    padding: 16px 0 20px 0;
    /*background-color: rgb(250,250,250);*/
    background: #000;
    text-align: left;
    width: 160px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
    -moz-box-shadow: 0px 1px 3px rgba(0,0,0,.4);
    box-shadow: 0px 1px 3px rgba(0,0,0,.4);
    }

    #menu ul ul > li:hover > div { opacity: 1; left: 196px; visibility: visible;}

    #menu ul ul a:hover{
    background-color: rgb(205,44,36);
    color: rgb(240,240,240);
    }

    #130486

    Found problem was z-index made it to 1000

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