CSS Drop Down Menu For Mobile
Here is the CSS I am using for the menu. Is it something with the CSS that I have wrong?
#HeaderMobileNav {
background-color: #333;
float : right;
width : 100%;
max-width : 149px;
height : 32px;
}
#HeaderMobileNav ul {
color: #ccc;
display: block;
text-decoration: none;
list-style-type: none;
margin: 0;
position: relative;
}
#HeaderMobileNav ul li {
display: inline-block;
}
#HeaderMobileNav ul li:hover {
background-color: #333;
}
#HeaderMobileNav ul li a {
color: #ccc;
display: block;
text-decoration: none;
}
#HeaderMobileNav ul li a:hover {
color: #ccc;
display: block;
text-decoration: none;
}
#HeaderMobileNav ul li:hover ul {
display: block;
}
#HeaderMobileNav ul ul {
display: none;
position: absolute;
background-color: #333;
}
#HeaderMobileNav ul ul li {
display: block;
} -
jbearnolimits -
Thanks
Signaturehttp://onthelineministries.com{{ DiscussionBoard.errors[9927668].message }} -
-
jbearnolimits -
Thanks
Signaturehttp://onthelineministries.com{{ DiscussionBoard.errors[9928509].message }} -