@dazmeister – your site has a couple of JavaScript errors that may be conflicting with WPtouch. shareaholic-analytics.js (“Failed to load resource: the server responded with a status of 403 (Forbidden)”) and in your main.js, around line 136 (“TypeError: Attempted to assign to readonly property.”). Resolving those may take care of the problem for you.
@jnkfrancis1978mx – it looks like you have a plugin or desktop theme file that injects some JavaScript to toggle the main menu’s positioning; it relies on the presence of a DOM element with the ID “trigger” –?WPtouch doesn’t have such an element, so the JavaScript fails:
<script type="text/javascript">
jQuery(document).ready( function() {
jQuery(window).scroll( function() {
if (jQuery(window).scrollTop() > jQuery('#trigger').offset().top)
jQuery('#nav').addClass('floating');
else
jQuery('#nav').removeClass('floating');
} );
} );
</script>
<script type="text/javascript">
jQuery(document).ready( function() {
jQuery(window).scroll( function() {
if (jQuery(window).scrollTop() > jQuery('#triggerb').offset().top)
jQuery('#phone-float').addClass('floatingb');
else
jQuery('#phone-float').removeClass('floatingb');
} );
} );
</script>
Try getting that JS to only show up when viewing the desktop theme, as it may solve the problem.