borgqueenx Active member Oct 9, 2015 #1 I dont want me and my moderators to see the moderation bar while browsing the mobile site.
P Paul B XenForo moderator Staff member Oct 9, 2015 #2 See these guides for how to identify the element and hide it based on the width. https://xenforo.com/community/resources/how-to.4390/ https://xenforo.com/community/resources/responsive-design.2193/ Upvote 0 Downvote
See these guides for how to identify the element and hide it based on the width. https://xenforo.com/community/resources/how-to.4390/ https://xenforo.com/community/resources/responsive-design.2193/
TJA Well-known member Oct 9, 2015 #3 In your EXTRA.css Code: @media (max-width:@maxResponsiveNarrowWidth) { #moderatorBar { display: none; }} Upvote 0 Downvote
In your EXTRA.css Code: @media (max-width:@maxResponsiveNarrowWidth) { #moderatorBar { display: none; }}
AndyB Well-known member Oct 10, 2015 #5 borgqueenx said: I dont want me and my moderators to see the moderation bar while browsing the mobile site. Click to expand... I suggest the following add-on: https://xenforo.com/community/resources/remove-header-responsive.3304/ Upvote 0 Downvote
borgqueenx said: I dont want me and my moderators to see the moderation bar while browsing the mobile site. Click to expand... I suggest the following add-on: https://xenforo.com/community/resources/remove-header-responsive.3304/
borgqueenx Active member Oct 10, 2015 #6 is there also a way for the secondary navbar to disappear? the one under the main navigation. in mobile only. Upvote 0 Downvote
is there also a way for the secondary navbar to disappear? the one under the main navigation. in mobile only.
borgqueenx Active member Oct 10, 2015 #7 by the way @TJA , this unfortunatly does not work in landscape mode on my mobile portrait works fine. Upvote 0 Downvote
by the way @TJA , this unfortunatly does not work in landscape mode on my mobile portrait works fine.
TJA Well-known member Oct 10, 2015 #8 borgqueenx said: by the way @TJA , this unfortunatly does not work in landscape mode on my mobile portrait works fine. Click to expand... Code: @media (max-width:@maxResponsiveMediumWidth) { #moderatorBar { display: none; }} Code: @media (max-width:@maxResponsiveWideWidth) { #moderatorBar { display: none; }} Upvote 0 Downvote
borgqueenx said: by the way @TJA , this unfortunatly does not work in landscape mode on my mobile portrait works fine. Click to expand... Code: @media (max-width:@maxResponsiveMediumWidth) { #moderatorBar { display: none; }} Code: @media (max-width:@maxResponsiveWideWidth) { #moderatorBar { display: none; }}
TJA Well-known member Oct 10, 2015 #9 borgqueenx said: is there also a way for the secondary navbar to disappear? the one under the main navigation. in mobile only. Click to expand... 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. Upvote 0 Downvote
borgqueenx said: is there also a way for the secondary navbar to disappear? the one under the main navigation. in mobile only. Click to expand... 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.
borgqueenx Active member Oct 10, 2015 #10 TJA said: 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. Click to expand... 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. Upvote 0 Downvote
TJA said: 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. Click to expand... 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.
Russ Well-known member Oct 10, 2015 #11 borgqueenx said: 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. Click to expand... Style properties -> [xb] header and navigation -> remove header proxy, check that option is one way of easily correcting it. Upvote 0 Downvote
borgqueenx said: 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. Click to expand... Style properties -> [xb] header and navigation -> remove header proxy, check that option is one way of easily correcting it.