somewebmedia/hc-offcanvas-nav

is there a way to always show the logo on navTitle and close button on all levels?

Opened this issue · 1 comments

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

<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>