Hello,
Thank you for the opensource code, probably the most amazing free out there. I know this has been asked before but had no answers unfortunately.
The main header for mobile sizes is double the size because there are two classes in the main-header.

I want to make it only one as the following:

Can someone please advise on best practice to hide main.header .logo for mobile?
or combine both the class navbar and class logo so both are in the same main-header. As now they are separated?
Issue type:
Environment:
Due to AdminLTE v2 using Bootstrap 3 you can use bootstrap available css class to hide it by adding 'hidden-xs' for phone and/or 'hidden-sm' for tablet.
(details: https://getbootstrap.com/docs/3.3/css/#responsive-utilities)
<div class="main-header"><a href="index2.html" class="logo hidden-xs hidden-sm">
<span class="logo-mini"><b>A</b>LT</span>
<span class="logo-lg"><b>Admin</b>LTE</span>
</a>....</div>
Result will be like this:

Most helpful comment
Due to AdminLTE v2 using Bootstrap 3 you can use bootstrap available css class to hide it by adding 'hidden-xs' for phone and/or 'hidden-sm' for tablet.
(details: https://getbootstrap.com/docs/3.3/css/#responsive-utilities)
<div class="main-header"><a href="index2.html" class="logo hidden-xs hidden-sm"> <span class="logo-mini"><b>A</b>LT</span> <span class="logo-lg"><b>Admin</b>LTE</span> </a>....</div>Result will be like this:
