MyBB Community Forums

Full Version: Help with CSS Dropdown Please!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys, I need a little help with a header dropdown menu I am trying to add to duendev3.  I got the menus working but there is a gap between the child menus that causes the menu to disappear if you aren't quick enough!  I can't figure out how to fix it...here is the URL and a screen shot!

https://alpharomeo15.org/


[attachment=46122]

(2023-07-01, 01:22 PM)RocketFoot Wrote: [ -> ]Hi guys, I need a little help with a header dropdown menu I am trying to add to duendev3.  I got the menus working but there is a gap between the child menus that causes the menu to disappear if you aren't quick enough!  I can't figure out how to fix it...here is the URL and a screen shot!

https://alpharomeo15.org/

I figured it out for the most part, but I can't figure out what is calling up the greenish background color in the dropdown menu?  This is the CSS code I used:
/** Nav menu */

#cssmenu {
    position: relative;
    height: 44px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
    width: auto;
    z-index: 1;
}

#cssmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: bold;
    z-index: 1;
}

#cssmenu > ul {
    position: relative;
    display: block;
    background: #181818;
    width: 100%;
    z-index: 10;
	
	
    -moz-border-bottom-left-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;	
	 -webkit-box-shadow: rgba(0,0,0,0.3) 0px 1px 4px, inset rgba(255,255,255,0.13) 0px 1px 0px;
    -moz-box-shadow: rgba(0,0,0,0.3) 0px 1px 4px, inset rgba(255,255,255,0.13) 0px 1px 0px;
    box-shadow: rgba(0,0,0,0.3) 0px 1px 4px, inset rgba(255,255,255,0.13) 0px 1px 0px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -moz-border-bottom-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

#cssmenu:after,
#cssmenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

#cssmenu.align-right > ul > li {
    float: right;
}

#cssmenu.align-center ul {
    text-align: center;
}

#cssmenu.align-center ul ul {
    text-align: left;
}

#cssmenu > ul > li {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
}

#cssmenu > ul > #menu-button {
    display: none;
}

#cssmenu ul li a {
    display: block;
        font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: bold;
    text-decoration: none;
}

#cssmenu > ul > li > a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: bold;
    padding: 15px 20px;
    color: #fff;
    -webkit-transition: color 0.25s ease-out;
    -moz-transition: color 0.25s ease-out;
    -ms-transition: color 0.25s ease-out;
    -o-transition: color 0.25s ease-out;
    transition: color 0.25s ease-out;
}

#cssmenu > ul > li.has-sub > a {
    padding-right: 32px;
}

#cssmenu > ul > li:hover > a {
    color: #ffffff;
}

#cssmenu li.has-sub::after {
    display: block;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

#cssmenu > ul > li.has-sub::after {
    right: 10px;
    top: 20px;
    border: 5px solid transparent;
    border-top-color: #7a8189;
}

#cssmenu > ul > li:hover::after {
    border-top-color: #323131;
}

#indicatorContainer {
    position: absolute;
    height: 12px;
    width: 100%;
    bottom: 0px;
    overflow: hidden;
    z-index: -1;
}

#pIndicator {
    position: absolute;
    height: 0;
    width: 100%;
    border: 12px solid transparent;
    border-top-color: #2b2f3a;
    z-index: -2;
    -webkit-transition: left .25s ease;
    -moz-transition: left .25s ease;
    -ms-transition: left .25s ease;
    -o-transition: left .25s ease;
    transition: left .25s ease;
}

#cIndicator {
    position: absolute;
    height: 0;
    width: 100%;
    border: 12px solid transparent;
    border-top-color: #2b2f3a;
    top: -12px;
    right: 100%;
    z-index: -2;
}

#cssmenu ul ul {
    position: absolute;
    left: -9999px;
    top: 70px;
    opacity: 0;
    -webkit-transition: opacity .3s ease, top .25s ease;
    -moz-transition: opacity .3s ease, top .25s ease;
    -ms-transition: opacity .3s ease, top .25s ease;
    -o-transition: opacity .3s ease, top .25s ease;
    transition: opacity .3s ease, top .25s ease;
    z-index: 8;
}

#cssmenu ul ul ul {
    top: 37px;
    padding-left: 5px;
}

#cssmenu ul ul li {
    position: relative;
}

#cssmenu > ul > li:hover > ul {
    left: auto;
    top: 44px;
    opacity: 1;
}

#cssmenu.align-right > ul > li:hover > ul {
    left: auto;
    right: 0;
    opacity: 1;
}

#cssmenu ul ul li:hover > ul {
    left: 170px;
    top: 0;
    opacity: 1;
}

#cssmenu.align-right ul ul li:hover > ul {
    left: auto;
    right: 170px;
    top: 0;
    opacity: 1;
    padding-right: 5px;
}

#cssmenu ul ul li a {
    width: 130px;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 20px;
    font-size: 12px;
    color: #9ea2a5;
    background: #323131;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

#cssmenu.align-right ul ul li a {
    text-align: right;
}

#cssmenu ul ul li:hover > a {
    background: #3f9889;
    color: #fff;
}

#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last > a {
    border-bottom: 0;
}

#cssmenu > ul > li > ul::after {
    content: '';
    border: 6px solid transparent;
    width: 0;
    height: 0;
    border-bottom-color: #323131;
    position: absolute;
    top: -12px;
    left: 30px;
}

#cssmenu.align-right > ul > li > ul::after {
    left: auto;
    right: 30px;
}

#cssmenu ul ul li.has-sub::after {
    border: 4px solid transparent;
    border-left-color: #9ea2a5;
    right: 10px;
    top: 12px;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}

#cssmenu.align-right ul ul li.has-sub::after {
    border-left-color: transparent;
    border-right-color: #9ea2a5;
    right: auto;
    left: 10px;
}

#cssmenu ul ul li.has-sub:hover::after {
    border-left-color: #323131;
    right: -5px;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

#cssmenu.align-right ul ul li.has-sub:hover::after {
    border-right-color: #323131;
    border-left-color: transparent;
    left: -5px;
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

@media all and (max-width: 960px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    #cssmenu {
        width: auto;
}

#cssmenu.align-center ul {
        text-align: left;
}

#cssmenu.align-right > ul > li {
        float: none;
}

#cssmenu ul {
        width: auto;
}

#cssmenu .submenuArrow,
    #cssmenu #indicatorContainer {
        display: none;
}

#cssmenu > ul {
        height: auto;
        display: block;
}

#cssmenu > ul > li {
        float: none;
}

#cssmenu li,
    #cssmenu > ul > li {
        display: none;
}

#cssmenu ul ul,
    #cssmenu ul ul ul,
    #cssmenu ul > li:hover > ul,
    #cssmenu ul ul > li:hover > ul,
    #cssmenu.align-right ul ul,
    #cssmenu.align-right ul ul ul,
    #cssmenu.align-right ul > li:hover > ul,
    #cssmenu.align-right ul ul > li:hover > ul {
        position: relative;
        left: auto;
        top: auto;
        opacity: 1;
        padding-left: 0;
        padding-right: 0;
        right: auto;
}

#cssmenu ul .has-sub::after {
        display: none;
}

#cssmenu ul li a {
        padding: 12px 20px;
}

#cssmenu ul ul li a {
        border: 0;
        background: none;
        width: auto;
        padding: 8px 35px;
}

#cssmenu.align-right ul ul li a {
        text-align: left;
}

#cssmenu ul ul li:hover > a {
        background: none;
        color: #8c9195;
}

#cssmenu ul ul ul a {
        padding: 8px 50px;
}

#cssmenu ul ul ul ul a {
        padding: 8px 65px;
}

#cssmenu ul ul ul ul ul a {
        padding: 8px 80px;
}

#cssmenu ul ul ul ul ul ul a {
        padding: 8px 95px;
}

#cssmenu > ul > #menu-button {
        display: block;
        cursor: pointer;
}

#cssmenu #menu-button > a {
        padding: 14px 20px;
}

#cssmenu ul.open li,
    #cssmenu > ul.open > li {
        display: block;
}

#cssmenu > ul.open > li#menu-button > a {
        color: #fff;
        border-bottom: 1px solid rgba(150, 150, 150, 0.1);
}

#cssmenu ul ul::after {
        display: none;
}

#cssmenu #menu-button::after {
}

#cssmenu #menu-button::before {
}

#cssmenu ul.open #menu-button::after,
    #cssmenu ul.open #menu-button::before {
        border-color: #323131;
}


/** Nav Menu End */