Quote Originally Posted by barco57 View Post
comparing apples to oranges pixelpadre...
Your one example page is a bootstrap html page and bootstrap is reponsive by default (no need to switch to the inspector to set device type, just resize browser) whereas the responsive classic requires device detection to determine if it is being displayed on a tablet/mobile device. Once a tablet/mobile device is detected it then different code is presented to the browser.

Code:
<!--bof navigation display-->
<div id="navMainWrapper" class="group onerow-fluid">
<?php 
 if ( $detect->isMobile() && !$detect->isTablet() || $_SESSION['layoutType'] == 'mobile' ) {
echo '<div class="header Fixed"><a href="#menu" title="Menu"><i class="fa fa-bars"></i></a></div>';
 } else if ( $detect->isTablet() || $_SESSION['layoutType'] == 'tablet' ){
echo '<div class="header Fixed"><a href="#menu" title="Menu"><i class="fa fa-bars"></i></a></div>';
} else { 
//
}


?>
I had no issues in any of the browsers see the bars in a mobile view, once I made sure I had "switched" device views, which in edge required going to the emulation tab and picking a mobile device

I realize that one is bootstrap and one isnt. But how was I supposed to a question "do you have one that works and one that doesn't"?

The fact remains that the browser drop the menu icon while browsers are in responsive modes. Its a problem. Is it a problem with other zencart responsive templates? I do not have the answer for that. I'm just reporting what I observed. What anyone cares to do about it is of no concern to me. Leave it or change it. Who cares. It's a defect as it stands. Template works as expected on all devices. But for developmental purposes, no good.