Hi. this one to fix click to "MORE" menu to show sidebar. I edited the file : /templates/ja_resume/js/script.js at the end of the file.
// Full-nav click to show off-canvas menu
(function($){
$(document).ready(function(){
jQuery('a[href="#full-nav"]').off().unbind().on('click', function(e){
jQuery('.off-canvas-toggle').trigger('tap', e);
e.stopPropagation();
e.preventDefault();
return false;
});
jQuery('.off-canvas-toggle').on('tap', function() {
if (isMobile.tablet)
jQuery('.t3-header').css( 'margin-top', (jQuery(window).scrollTop())+'px');
});
});
})(jQuery);
This one to fix contact active colour. and file : /templates/ja_resume/tpls/blocks/header.php Change the code
$('body').scrollspy({target: '.t3-megamenu', offset: 190});
To
if ($('.t3-navbar ul li.current a.home').length) // only use at onepage.
$('body').scrollspy({target: '.t3-megamenu', offset: 190});
Regards.