Navigation collapsed meny

Hi.
I am working on this page: http://leadersormlandskusten.se.preview.binero.se/ansokan-om-utbetalning/
Is it possible to change the behavior of the navigation collapsed meny.

  1. I would like it to be always “open”
  2. I would like the submenu to be moved a few pixels to the right so that it is more clear that it is a submenu
1 Like

Hey there,

Thanks for writing in!

  • To open the navigation collapsed by default add the following code in the Theme Options > JS:
jQuery(document).ready(function($){
	$('.x-menu-collapsed > li > a').click();
});
  • To move the the submenu to the right add the following code in the Theme Options > CSS:
.x-menu-collapsed .sub-menu {
    padding-left: 20px;
}

Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

1 Like

Thanks. Exactly what I wanted

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.