Forum Discussion
Removing progress indicators in Rise
Pano, your code seems to work for me for the main page, I no longer see progress icons there. but in the menu, I still see progress under the heading (% complete). Any workaround for that?
- MelissaKallis2 years agoCommunity Member
Hi Roger. I tested the code I shared on a new project and it works well for me. However, one thing I noticed is that it only works when the default Sidebar navigation is used. So it won't work with Compact or Overlay navigation. You may want to try adding the code again and make sure you haven't missed anything. I also tried Phil's code, but it still produces the heading with the "% complete."
- PhilFoss2 years agoCommunity Member
Thanks Pano I totally forgot about the % complete in the sidebar header area. We can combine all 3 into one style like so:
.lesson-progress.lesson-progress--sidebar,
.lesson-progress.lesson-progress--cover,
.nav-sidebar-header__progress-text{
display: none;
}- MelissaKallis2 years agoCommunity Member
Phil, the updated code you provided removed the % complete, but the progress meter still appeared. Here is the consolidated code I would suggest for use in the index.html file. I was able to test it successfully:
.nav-sidebar-header__progress-text,
.nav-sidebar-header__progress-track,
.progress-circle.progress-circle{
display: none;
}