Hi yellowtoot,
If you disable the topbar positions, the main menu will be on the top. To fix this issue, you can open the \templates\ja_healthcare\js\script.js file, in line 91.
Replace the following code:
// Add Affix to JA MainMenu
$(document).ready(function () {
if($('#t3-mainnav').length > 0) {
$('#t3-mainnav').affix({
offset: {
top: $('#t3-header').outerHeight() + $('.t3-top-bar').outerHeight()
}
});
}
});
With new code:
// Add Affix to JA MainMenu
$(document).ready(function () {
if ($('#t3-mainnav').length > 0) {
var offsetTop = $('#t3-header').outerHeight();
if ($('.container-hd').hasClass('t3-top-bar')) {
offsetTop += $('.t3-top-bar').outerHeight();
}
$('#t3-mainnav').affix({
offset: {
top: offsetTop
}
});
}
});
Hope this helps!