Hello,
I would like to move the hamburger menu next to bag option and also wanted to add word “MENU” beneath hamburger Icon.
Thank you in advance!
Main issue: Move the mobile hamburger (navigation) icon next to the bag icon and display the word “MENU” beneath it in the Impulse theme.
Key steps taken:
What the CSS does (mobile only, up to 768px):
Outcome:
Status: Resolved. No remaining questions or outstanding actions.
Hello,
I would like to move the hamburger menu next to bag option and also wanted to add word “MENU” beneath hamburger Icon.
Thank you in advance!
Hi @AlgreenSM
Please kindly share with me your store URL and Password if it is password protected
Best,
Daisy
Thank you for your response Daisy. Here is our website
Hi @AlgreenSM
To complete your requests, please follow these steps:
@media screen and (max-width: 768px){
.header-item.header-item--icons .site-nav__icons > button.site-nav__link.site-nav__link--icon {
order: 2;
position: relative;
}
.header-item.header-item--icons .site-nav__icons > button.site-nav__link.site-nav__link--icon::after {
content: "MENU";
font-size: 10px;
position: absolute;
bottom: -50%;
right: 50%;
transform: translateX(50%);
}
}
Here is the result: https://prnt.sc/nZeuMVQOcPtu
I hope this helps,
Best,
Daisy
Thank you very much!