Braden I am trying to only hide ButtonGroup SubscriptionMenu on mobile, but when i try to display none it also hides the one on desktop Whats the proper way hiding this on mobile?
clarkwinkelmann Braden what's your code? You can use the @media @phone { media query inside of the custom Less (@phone is a Flarum Less variable containing the correct media query for the mobile viewport).
Braden I tried using .DiscussionPage-nav>ul> and .DiscussionPage-nav>ul>li @media screen and (max-width: 600px) { .DiscussionPage-nav>ul>li { display: none; } which didn't work