The sticky menu is disabled for smaller screens due to the space they occupy and you can navigate to the top quickly in iPad/iPhone by touching the top bar of the browser window. You can tweak this behavior a bit by modifying the code in main.js at line number 51 –
$(window).scroll(function () {
......
/* show sticky menu after screen has scrolled down 200px from the top in desktop and big size tablets only */
if (width > 768 && (yPos > 200)) {
$("#sticky-menu-area-wrap").fadeIn();
} .....
});
Changing the value 768 above to a lower value should help.
For menu overlapping with logo, it’s a little bit involved due to menu item highlighting that is involved. Pls see if this works for you –