Enable Transparent Header for Touch Laptops.
We disable transparency for touch because of some inconsistencies with mobile menu. You can certain try it with transparency by turning this setting off for "touch" devices. It will still disable for smaller screens like iPhone.
Open bellevue/assets/js/main.js
line 263 of main.js
var isTouch = Modernizr.touch ||
should be
var isTouch = false ||
Also, go into page-header.php and change
<script> jQuery(document).ready(function($) { "use strict"; if (Modernizr.touch) { <?php echo sanitize_text_field($background_js); ?> } }); </script>
to
<script> jQuery(document).load(function($) { "use strict"; if (Modernizr.touch) { <?php echo sanitize_text_field($background_js); ?> } }); </script>
That should be it. :)