gribblej
Hi
Our developer added this script code in/js/script.js file
jQuery(window).on('load', function() {
jQuery('.t3-mainnav').affix({
offset: {
top: jQuery('.t3-mainnav').offset().top - 35
}
});
var $mainnav = jQuery('.t3-mainnav');
$mainnav.on('affix.bs.affix', function() {
$mainnav.next().css('margin-top', '64px');
});
$mainnav.on('affix-top.bs.affix', function() {
$mainnav.next().css('margin-top', '');
});
});
and remove the sticky effect from mainnav.php
Now you have topbar that is sticky and working fine as you needed..
Regards