Hi rauschke,
Actually, the menu icon is pure css. It contains one <div>
(the middle bar) with :before
and :after
to generate the other bars.
All the stuff about this icon is in /css/main.css
line 240.
The icon animation is triggered with jQuery: $('.menu-icn-wrap').on('click', function()
on /js/scripts.js
and the animation is pure css too transform: rotate(45deg);
.
That’s why I think you can’t change the icon. You can modify the code if you want but you’ll loose your modifications if I update the theme.
Should I add an option to choose the menu icon inside the Theme Settings?