hi @marcodimi,
Sorry I misunderstood early. I think what you mean is to fix the primary menu.
This is a bit complex but it can be done following following steps:
1. Add following CSS code in Appearance=> Theme Options=> Custom CSS Styles
#access.fixed {
position: fixed;
top: 0;
width: 1000px !important;
}
2. Then add following jQuery code in Appearance=> Theme Options=> Webmaster Tools=> Header and Footer Codes=> Code to display on Footer:
<script>
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 100) {
jQuery('#access').addClass('fixed');
} else {
jQuery('#access').removeClass('fixed');
}
});
</script>
This will fix the menu whenever user scrolls below the primary menu.
If you always want the Primary Menu fixed, you can just add following code to Appearance=> Theme Options=> Custom CSS Styles and it will always be fixed to top.
#access {
position: fixed;
top: 0;
width: 1000px !important;
}
#branding {
margin-top: 44px;
}
Let me know how things workout.
Regards,
Pratik