is there a way to always show the logo on navTitle and close button on all levels?
Opened this issue · 1 comments
bomsbong commented
First thanks for this awesome menu, would like to ask if it's possible to always show the logo on navTitle and close button on all menu levels? thanks
webgreat commented
<script>
$(document).ready(function($) {
const wg_menu_image = document.createElement('img');
wg_menu_image.setAttribute(
'src',
'path/to/image.png',
);
$('#wg_menu').hcOffcanvasNav({
navTitle: wg_menu_image,
});
});
</script>