Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Submenu formatting

Home Forums Older releases 1.0.x Submenu formatting Reply To: Submenu formatting

#3757
higgo36
Participant

Nevermind, i just figured it out by using this:


 <script type="text/javascript">
    	$(function() {
    		$('#main-menu').smartmenus({
    			subMenusSubOffsetX: 1,
    			subMenusSubOffsetY: 0
    		});
    		$('#main-menu').smartmenus('keyboardSetHotkey', '123', 'shiftKey');
    	});
    </script>

So, instead of trying to use CSS, I was able to move the flyout nested ul’s using Script.