Forum Discussion
In Rise, can you remove the lesson progression number and the percentage complete labels completely?
Hi Jeanine,
Instead of doing that I would just recommend that you just change the 'lesson' label to something that is more appropriate for your needs (i.e. 'Part' or 'Page'). This is done in Settings. I would also remove your own numbering system from the page/section names as this is what will cause some of the confusion as it won't tally with whatever Rise shows.
If you do want to hide that full line of text though (and leave just the up and down arrows at the top and bottom of the page) you can add the following to the main.bundle.css file:
.previous-lesson__title {
visibility: hidden;
}
To hide the same at the bottom use:
.next-lesson__name {
visibility: hidden;
}
To remove the lesson number and just leave the page name at the top and bottom of the pages would be a lot trickier as that needs to be done in the main.bundle.js file and is way more complex.
Hi stuart,
Even if it's trickier, can you tell us more about your main.bundle.js file solution ?
thanks a lot
- JeremyJennings-4 years agoCommunity Member
I know this is an old thread but I had the same problem and came up with a solution if you still need one:
In a text editor, open main.bundle.js.
Edit main.bundle.js
Set o=t.nextNumber
to o=""Set i=n.previousNumber
to i=""Save the file. Done.