Hello,
I need help with spacing on the bottom of my hamburger menu (forced mobile menu on desktop)
I attached a screenshot of the bottom of the menu where the search icon and member area are spaced out under log-in.
The website is https://www.mediterranos.com/ and password: pita
For the search icon I used the Will Myers code.
Thanks in advance for any help! Here is my current code in CSS:
/* 768 for tablet - desktop - 992 for desktop */
@media screen and (min-width:768px) {
/* hide navigation */
.header-nav {
display: none;
}
/* show burger */
.header-burger {
display: flex;
}
/* Show overlay mobile menu */
.header--menu-open .header-menu {
opacity: 1;
visibility: visible;
}
}
.burger-inner:hover .top-bun, .burger-inner:hover .patty, .burger-inner:hover .bottom-bun
{background-color:#FF660F !important;}
/**
* Search Icon in Header Styles
* From Will-Myers.com
**/
//Search Page Styles
.sqs-search-page.sqs-search-page-content::before {
content: "Search";
display: inline-block;
margin-bottom: 34px;
font-size: ~"calc((3 - 1) * 1.2vh + 1rem)";
}
.search-icon * {
stroke: currentColor;
stroke-width: 4px;
}
// Desktop Search Icon
.showOnDesktop {
display: flex;
align-items: center;
}
// Mobile Search Icon
[data-folder="root"] .search-icon .icon {
width: 28px;
height: 28px;
}
.header-menu-nav-item a:hover div {
color: #FF660F !important;
}