How can I remove an invisible hamburger menu on mobile?

Solved

How can I remove an invisible hamburger menu on mobile?

Apeya
Tourist
18 0 1

 

Recently I moved my hamburger menu to the right corner and only now realised, that there is another ‘invisible’ hamburger menu right under the logo image. It responds if you touch in the area I marked on the picture attached. 

Can I somehow get rid of it?

huge thanks in advance)

IMG_2723.jpeg

 

Accepted Solution (1)

HHenry
Shopify Partner
32 5 7

This is an accepted solution.

You can  follow the instruction below: 

1. Go to Shopify > Theme > Customize

2. Copy and paste this code on Theme settings > Custom CSS section

 

@media (max-width: 767px) {
	.menu-drawer-container {
		position: absolute;
	    left: 344px;
	    top: 3px;
	}
	.header__icon--menu svg.icon.icon-hamburger {
	    position: static;
	}
	.header__heading a.header__heading-link {
	    position: static;
	    margin-top: -15px;
	}
	.header__icon--menu svg.icon.icon-close {
		left: 0 !important;
	}
	div#menu-drawer {
		right: -26px;
    	left: auto;
	}
}

 

Done

If this is helpful, please Like and Accept the solution.

View solution in original post

Replies 5 (5)

Apeya
Tourist
18 0 1

Website - apeya.co

Theme - Dawn

Dan-From-Ryviu
Shopify Partner
10791 2134 2253

Please remove your codes that move menu and logo so I can provide new codes to make it works

- Solved it? Hit Like and Accept solution! ❤️Buy Me Coffee❤️
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

topnewyork
Astronaut
1028 140 175
@media (max-width: 768px){
    svg.icon.icon-hamburger {
    display: none !important;
}
}

@media (min-width: 769px){
svg.icon.icon-hamburger {
    display: none !important;
}
}
Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month

HHenry
Shopify Partner
32 5 7

This is an accepted solution.

You can  follow the instruction below: 

1. Go to Shopify > Theme > Customize

2. Copy and paste this code on Theme settings > Custom CSS section

 

@media (max-width: 767px) {
	.menu-drawer-container {
		position: absolute;
	    left: 344px;
	    top: 3px;
	}
	.header__icon--menu svg.icon.icon-hamburger {
	    position: static;
	}
	.header__heading a.header__heading-link {
	    position: static;
	    margin-top: -15px;
	}
	.header__icon--menu svg.icon.icon-close {
		left: 0 !important;
	}
	div#menu-drawer {
		right: -26px;
    	left: auto;
	}
}

 

Done

If this is helpful, please Like and Accept the solution.
Apeya
Tourist
18 0 1

I’ve made some personal corrections, but overall this code worked!!!

Thank you SO MUCH, Henry. I truly appreciate your help