How to change the Hamburger Color in Birdseye theme?

I am currently working on a site using the Birdseye theme. I changed the transparent nav bar to a white background to match it when you scroll. The problem is the hamburger doesn't show up until you scroll down. I know it's there, it's just white because I was able to put a black bg behind it before but couldn't change the color of the hamburger itself. 

Any idea on how to make the hamburger black like it turns when you scroll on the first nav bar?

 imageimage

1,562 Views
Message 1 of 5
Report
1 Best Answer

Best Answer

After some playing around I was able to get it. I believe this is what fixed it. I had to go into _responsive.less and down to this section and add the bold text in. Not sure how it works but it works for me!

/* Mobile Menu */

label.hamburger {
position: absolute;
color: #000000;
top: -5px;
right: -10px;
width: 30px;
height: 30px;
padding: 10px;
cursor: pointer;
.transition(all 300ms ease-in-out);

span,
span:before,
span:after {
position: relative;
display: block;
width: 22px;
height: 2px;
background: #000000;
content: '';
.transition(all 200ms ease-in-out);
}

View Best Answer >

1,530 Views
Message 6 of 5
Report
4 REPLIES 4
Square

Hi @Collin_S That would probably require some kind of css tweak. Can you post a link to the live site? It helps with figuring out the code that needs to be used. Thanks! 

1,549 Views
Message 6 of 5
Report

Unfortunately, it is still in preview mode. I hope that's ok!

http://preview.rytechllc.com/6kfigc.e5734d2513ee72628d785b435b022509

thanks! 

1,534 Views
Message 6 of 5
Report

Best Answer

After some playing around I was able to get it. I believe this is what fixed it. I had to go into _responsive.less and down to this section and add the bold text in. Not sure how it works but it works for me!

/* Mobile Menu */

label.hamburger {
position: absolute;
color: #000000;
top: -5px;
right: -10px;
width: 30px;
height: 30px;
padding: 10px;
cursor: pointer;
.transition(all 300ms ease-in-out);

span,
span:before,
span:after {
position: relative;
display: block;
width: 22px;
height: 2px;
background: #000000;
content: '';
.transition(all 200ms ease-in-out);
}

1,531 Views
Message 6 of 5
Report
Square

Thanks for sharing, @Collin_S! Yes, those changes would change the color of the hamburger menu icon.

1,528 Views
Message 6 of 5
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.
grz-custom-initialLetter