Is there anyway to have a theme installed that users could select that hides the topic progress bar on mobile?
Or I guess… how can I hide the mobile topic progress bar?
Is there anyway to have a theme installed that users could select that hides the topic progress bar on mobile?
Or I guess… how can I hide the mobile topic progress bar?
Hiding it is easy with a little CSS (added to your theme under admin > customize > themes).
.mobile-view {
#topic-progress {
display: none;
}
}
Users can’t configure theme settings individually, so If you wanted to make it so users could choose it’s a little more involved… I think the simplest way would be to:
community.example.com/my/preferences/interface
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.