I have searched and can't find this anywhere. I know it's in core template files, but give me a hint.
I want to remove the 3 Bar Menu button in mobile view. The rest of my mobile works great, but the 3 bar menu at this point does nothing. Google recognizes the site as mobile so no worry there.
Firebug returns this:
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse"><span class="sr-only"></span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
In header.tpl I commented out this, but still get it.
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
Am I close?