Forum Discussion
CeliaRistow-5e2
2 years agoCommunity Member
Removing progress indicators in Rise
I would like to remove all progress indicators from a course (progress indicator under title banner, and progress bar/icon from menu) and wondered if anyone could help.
Since removal/hiding of pr...
BarbaraLenze-91
2 years agoCommunity Member
Hi Celia, to remove all progress indicators you have to edit the file "main.bundle.css". It is in the "lib" folder of the published html output. You need to add the following script to the very beginning of the file:
.organic .nav-sidebar-header__progress-text {
display: none;
}
.organic .nav-sidebar-header__progress-track {
display: none;
}
.organic .progress-circle.progress-circle--sidebar {
display: none;
}
It worked well for me, I hope it works for you too.
Best regards
Barbara