Eda90
January 15, 2022, 3:38pm
1
Hi there,
I am working with the Brooklyn theme, but the hamburger menu on mobile seems transparant. The functionality is there, so you can press the upper left corner and the hamburger will pop open, but you cannot see the button.
How can I make it visible?
Please see attached screenshot.
Thanks in advance.
Eda
1 Like
Hi @Eda90 ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
@Eda90
Sorry for facing this issue, it’s my pleasure to help us.
Welcome to the Shopify community!
and Thanks for your Good question.
Please share your site URL,
So I will check and provide a solution here.
Eda90
January 19, 2022, 10:18pm
4
Thanks @AvadaCommerce @KetanKumar ,
link is yuvaliving.com
Thanks in advance!
Eda
@Eda90
try this code
Go to Online Store->Theme->Edit code
Asset->/timber.scss.liquid->paste below code at the bottom of the file.
.burger-icon {
display: block;
height: 2px;
width: 18px;
left: 25px;
margin-left: -9px;
position: absolute;
transition: all .25s ease-out;
background: #1f2021;
}
.burger-icon--top {
top: 17px;
}
.burger-icon--mid {
top: 24px;
}
.burger-icon--bottom {
top: 31px;
}
Hi @Eda90 ,
You can follow the instruction below:
Go to Online Store->Theme->Edit code
Asset->/timber.scss->paste below code at the bottom of the file:
.header-wrapper .burger-icon {
display: block;
height: 2px;
width: 20px;
margin-top: 4px;
}
I hope it would help you.