Forum Discussion
NishaAtkins
21 days agoCommunity Member
Remove Rise microlearning restart button
Hello
I have a Rise microlearning activity but it's just one block - a process. That's all I need, which means the restart icon (curved arrow) that automatically appears in the bottom right of the ...
- 20 days ago
Nisha, I think you found a bug! Note this only happens under this criteria:
- Microlearning course
- Use only one block
- Hide cover page during publish/export
Here's the CSS I came up with, and as shown in the screen recording I added this directly to index.html
<style> /* hide 'next buttons' including restart button for a single-block microlearning course */ #app .lesson-one-page-slides__next-btns { display: none; } </style>Screen recording:
PhilFoss
20 days agoCommunity Member
Nisha, I think you found a bug! Note this only happens under this criteria:
- Microlearning course
- Use only one block
- Hide cover page during publish/export
Here's the CSS I came up with, and as shown in the screen recording I added this directly to index.html
<style>
/* hide 'next buttons' including restart button for a single-block microlearning course */
#app .lesson-one-page-slides__next-btns {
display: none;
}
</style>
Screen recording:
NishaAtkins
16 days agoCommunity Member
PhilFoss​ Thank you so much! Just what I needed and it's all sorted. Thank you very much for taking the time to help - really appreciate it.