primary navigation modification

Viewing 3 posts - 1 through 3 (of 3 total)
  • #13155
    ragekay
    Participant

    hey guys,

    I’m searching for a easy method to get my primary nav-bar in the top right corner on my homepage… yeah I can copy the code from the footer.php to the header.php it works but how can I change the open-method of the submenus to a dropdown menu?

    And how can I deactivate the “jumping” Links in my Navigation bar??

    greets
    http://www.ragekay.de

    #13157
    Daniel Tara
    Keymaster

    To make the submenus open on bottom instead of top, in style.css for the selector .nav ul replace these rules:

    top:auto !important;
    bottom:100%;

    with this:

    top:24px;

    To disable the jumping menus, open the file scripts/minimatica.js and delete these lines:

    jQuery('.nav a').bind({
    	mouseenter:function() {
    		jQuery(this).animate({
    			marginTop: -5
    		});
    	},
    	mouseleave:function() {
    		jQuery(this).animate({
    			marginTop: 0
    		});
    	}
    });
    #13312
    ragekay
    Participant

    ahh thank you very much, it works πŸ˜€

    but your version looks better.

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.