Forum Discussion
Remove the Start Course Button in Rise?
- 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.
Yes, my suggestions are intended only for an exported course (web only or LMS) - but as Stuart points out, you can remove the "Begin" and "Details" button directly through Settings>Labels (so I was over thinking it).
Unfortunately, there does not appear to be any way in the Settings>Labels to remove the inverted caret/downward chevron (so you can hide the "Details" button but you are left with the inverted caret/downward chevron only). So currently, the only way to hide the icon is by hiding it using the CSS change. Articulate really needs to address this through the Settings>Labels (e.g, make the icon optional, let the user select an icon to go with label text, etc.).
Also, to clarify my "C" suggestion above - my ONLY suggested addition/change was:
visibility:hidden;
I was simply showing the steps to locate the location in the file to place the visibility:hidden;
property (for those who need/want detailed instructions).
Finally, here is how you can hide the progress bar:
E. To Remove the Progress Bar
- Open main.bundle.css in a text editor;
- Search for ā.progress-barā ;
RESULT:
.progress-bar{font-weight:700;text-transform:uppercase;letter-spacing:.12rem;font-size:1.1rem;color:#fff}
- Add ONLY the "visibility:hidden;" property; and
RESULT:
.progress-bar{visibility:hidden;font-weight:700;text-transform:uppercase;letter-spacing:.12rem;font-size:1.1rem;color:#fff}
- Save the file.
Yes - but you only need the visibility part. The rest of the (existing) code that you include in the revised part is redundant as it is styling something that isn't visible.