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
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
});
}
});
ahh thank you very much, it works π
but your version looks better.