Site URL: https://lightsandtracks.squarespace.com/
I'm trying to update the color of my hamburger menu on hover over similar to the behavior seen on the site at: https://lightsandtracks.squarespace.com/. I'm not skilled enough to extract the hover over CSS from this site. Maybe someone can help me with that?
I can't reveal our site's URL but I have figured out the CSS to update the color of the hamburger menu, either (1) or (2) below:
(1)
.burger-inner .top-bun, .burger-inner .patty, .burger-inner .bottom-bun {
background-color: white!important;
}
(2)
.burger-inner>div {
background-color: white !important;
}
Then I tried the following to update the color to red on hover over, but it only updates the color of each of the horizontal lines of the hamburger menu but not all three at once:
.burger-inner>div:hover {
background-color: red !important;
}
If someone can suggest what CSS I can use to update the color all 3 sections of the hamburger menu on hover over I'd love to know.