
Originally Posted by
chadlly2003
To get the hamburger menu to display on tabet
You need to find this is stylesheet_header_menu.css
@media (max-width: 767px) {
#menuContainer {
float: none;
border:
none;
box-shadow: none;
display: block;
margin:
0;
width: 100%;
height: 50px;
}
}
replace it with
@media (max-width: 992px) {
#menuContainer {
float: none;
border:
none;
box-shadow: none;
display: block;
margin:
0;
width: 100%;
height: 50px;
}
}
find amd replace this style and include media query
@media (max-width: 992px) {
#menuContainer {
float: none;
border:
none;
box-shadow: none;
display: block;
margin:
0;
width: 100%;
height: 50px;
}
}
and find this class and add media query like shown below
@media (min-width: 992px) {
#mega-container ul.mega-menu {
float: left;
background: rgb(1, 19, 82));
background: -moz-linear-gradient(top,rgb(1, 19, 82)),rgb(31, 120, 182));
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(1, 19, 82))), to(rgb(31, 120, 182)));
background: -webkit-linear-gradient(top,rgb(1, 19, 82)),rgb(31, 120, 182));
background: -ms-linear-gradient(top,rgb(1, 19, 82)),rgb(31, 120, 182));
background: -o-linear-gradient(top,rgb(1, 19, 82)),rgb(31, 120, 182));
background: linear-gradient(rgb(1, 19, 82)),rgb(31, 120, 182));
list-style:
none;
display: none;
}
Bookmarks