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.

Smartmenu doesnt work in Javascript not enabled browsers

Home Forums Older releases 1.0.x Smartmenu doesnt work in Javascript not enabled browsers

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #3392
    kavi
    Participant

    Hi,

    Can anyone tell me if there is a way to make smart menu work in browsers without JS .

    Right now if i disable the JS in a browser, the dropdowns are not showing .

    Thanks,
    Kavi.

    #3393
    admin
    Keymaster

    Hi,

    Could be done very easily with a bit of additional CSS.

    1) Copy the following (you can tweak it later if you like) and save it in a new file “sm-pure-css.css”:

    /* SmartMenus - pure CSS menus */
    @media (min-width: 768px) {
    
    	/* sub menus defaults - width should be the same for all */
    	.sm ul {
    		width: 12em;
    		left: 0;
    	}
    	.sm-rtl ul {
    		left: auto;
    		right: 0;
    	}
    
    	/* sub menus offset */
    	.sm ul ul, .sm-vertical ul {
    		margin: -2.7em 0 0 11.8em;
    	}
    	.sm-rtl ul ul, .sm-rtl.sm-vertical ul {
    		margin: -2.7em 11.8em 0 0;
    	}
    
    	/* show sub menus on hover */
    	.sm li:hover > ul {
    		display: block;
    		z-index: 10000;
    	}
    }

    2) Then link it on your page after “sm-core-css.css” and your chosen theme like this:

    <link id="sm-pure-css" href="PATH_TO/sm-pure-css.css" rel="stylesheet" type="text/css" />

    3) Finally, add the following JS line before your SmartMenus init call:

    $('#sm-pure-css').remove();

    E.g. should look something like:

    $(function() {
    	// disable SmartMenus pure CSS
    	$('#sm-pure-css').remove();
    
    	// SmartMenus init
    	$('#main-menu').smartmenus({
    		subMenusSubOffsetX: 1,
    		subMenusSubOffsetY: -8
    	});
    });

    Let me know if you have any troubles.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘1.0.x’ is closed to new topics and replies.