Forum Discussion
Hide Course Menu on first page?
- 2 years ago
Good news, everyone! We've just released a new feature that allows you to turn off the cover page when you publish for LMS to improve compatibility, streamline training, and get learners into content faster. Give it a try, and let us know if you have any questions about it!
Note: You can't hide the cover page for training created from Next Big Idea Club content templates.
I found a work around to hide the TOC from the start screen by digging into the JS and CSS files created by the Rise export.
When exporting a course for SCORM 1.2 you will get a zip file to import into the LMS. Open this file within the zip:
scormcontent\lib\main.bundle.css
At the very bottom, add this line:
.overview-list { display: none; position: absolute; top: 0; left: 0; width: 1; }
Zip it back up and install on the LMS.
Sounds interesting, Jay. I'll have to give that a try next time I want to bypass the menu. Thanks for sharing your workaround!