My responsive drop-down menu is causing issues when the media query activates and I hover over the links, causing the width of the drop-down menu to extend beyond the container.
<!-- Navigation Menu -->
<div class="container">
<div id="navigation">
<label for="show-menu" class="show-menu">Menu</label>
<input type="checkbox" id="show-menu" role="button">
<ul id="menu">
<li><a href="#">| Home</a></li>
<li>
<a href="#">| SERMONS <span>▼</span></a>
<ul class="hidden">
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 1</a></li>
</ul>
</li>
<li>
<a href="#">| EVENTS<span>▼</span></a>
<ul class="hidden">
<li><a href="#">slam Link 1</a></li>
<li><a href="#">Link 1</a></li>
<li><a href="#">LINK2</a></li>
</ul>
</li>
<li><a href="#">| CONNECT<span>▼</span></a></li>
<li><a href="#">| STAFF<span>▼</span></a></li>
<li><a href="#">| LOCATIONS <span>▼</span></a></li>
<li><a href="#">| OTHERS</a></li>
</ul>
</div>
</div>
<!-- End of Navigation Menu -->
Check out the CSS code below for styling:
#navigation {
background-color: @bg-color;
height: 50px;
margin: 0px auto;
}
/*Arrow down style */
#navigation span{
font-size: 10px;
padding-left: 4px;
line-height: 50px;
}
/*Strip the ul of padding and list styling*/
ul {
list-style-type:none;
margin:0;
padding:0;
width: 100%;
position: absolute;
}
/*Create a horizontal list with spacing*/
li {
display:inline-block;
float: left;
margin-right: 1px;
width:100px;
}
/*Style for menu links*/
li a {
display:block;
height: 50px;
text-align: center;
line-height: 50px;
font-family:@Oswald;
font-size: 16px;
color: #fff;
background: @bg-color;
text-decoration: none;
}
/*Hover state for top level links*/
li:hover a {
background: @light-gray;
}
/*Style for dropdown links*/
li:hover ul a {
background: @light-gray;
color: @white;
height: 40px;
line-height: 40px;
width: 100%;
}
/*Hover state for dropdown links*/
li:hover ul a:hover {
background: @bg-color;
color: @white;
}
/*Hide dropdown links until they are needed*/
li ul {
display: none;
position: absolute;
z-index: 100;
}
/*Make dropdown links vertical*/
li ul li {
display: block;
float: none;
}
/*Prevent text wrapping*/
li ul li a {
width: auto;
min-width: 100px;
padding: 0 20px;
text-align: left;
}
/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
display: block;
min-width: 100%;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
font-family:@Oswald;
text-decoration: none;
color: #fff;
background: @bg-color;
text-align: center;
padding: 10px 0;
display: none;
}
/*Hide checkbox*/
input[type=checkbox]{
display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
display: block;
}
input[type='text']{
color: @bg-color;
}
/*Responsive Styles*/
@media screen and (max-width : 760px){
/*Make dropdown links appear inline*/
ul {
position: static;
display: none;
}
/*Create vertical spacing*/
li {
margin-bottom: 1px;
}
/*Make all menu links full width*/
ul li, li a {
width: 100%;
}
li ul li a {
text-align: center;
}
/*Display 'show menu' link*/
.show-menu {
display:block;
}
.hide-tab {
display: none;
}
#logo h1, #logo p {
text-align: center;
}
#testr form {
float: none;
}
#testr > form > input[type='text'] {
margin: 0 auto;
width:60%;
line-height: 60px;
}
}
I've attempted various solutions, but the issue persists. Even a simple width:100%
doesn't seem to work. If you have any suggestions, please let me know. Thank you!