XF 1.5 Can we remove the moderation bar from mobile/responsive view?

is there also a way for the secondary navbar to disappear? the one under the main navigation. in mobile only.
Code:
@media (max-width:@maxResponsiveNarrowWidth)
{ .tabLinks { display: none; }}

@media (max-width:@maxResponsiveMediumWidth)
{ .tabLinks { display: none; }}

@media (max-width:@maxResponsiveWideWidth)
{ .tabLinks { display: none; }}

Take you pick, if you want landscape mobile you may want to use the Medium one.
 
Code:
@media (max-width:@maxResponsiveNarrowWidth)
{ .tabLinks { display: none; }}

@media (max-width:@maxResponsiveMediumWidth)
{ .tabLinks { display: none; }}

@media (max-width:@maxResponsiveWideWidth)
{ .tabLinks { display: none; }}

Take you pick, if you want landscape mobile you may want to use the Medium one.
thanks that works, but it kinda messes up the looks. i now have a open spot, instead of the site moving up to fill the hole/gap.
 
Top Bottom