Hey there,
Not sure if I understood the issue, but you can target the hamburger with this CSS selector:
.si-hamburger
For example, if you want to add some padding and a background, you can use this CSS:
.si-hamburger {
background: #eee;
padding: 20px;
}
When a mobile menu is active .is-mobile-menu-active class is added to the html element, which means you can apply styles only when the menu is active. Like this:
.is-mobile-menu-active .si-hamburger {
background: #eee;
padding: 20px;
}
Branko thanks so much for your help.
The section option is exactly what I was looking for. To add bottom padding to hamburger when mobile menu was active.
Thanks again,
Chris