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.
I will add two more CSS solutions for a long-standing Rise pet peeve - the font size used in Rise's "Details" list of Sections/Lessons is too small (I submitted a suggestion that the user should be allowed to modify the Details font/sizes):
F. To Change the Details "Lesson" Font Size
- Open main.bundle.css in a text editor;
- Search for “.overview-list__link{” ;
RESULT:.overview-list__link{display:block;padding:2rem 6rem 2rem 4rem;font-family:lato,sans-serif;font-size:1.3rem;line-height:1.6rem;font-weight:700;text-decoration:none;color:#313537}
- Change any property values according to your needs, e.g., I changed the font-size from 1.3rem (above) to 1.6rem (below); and
RESULT:
.overview-list__link{display:block;padding:2rem 6rem 2rem 4rem;font-family:lato,sans-serif;font-size:1.6rem;line-height:1.6rem;font-weight:700;text-decoration:none;color:#313537}
- Save the file.
G. To Change the Details "Section" Header Font Size (if you are using section headers)
- Open main.bundle.css in a text editor;
- Search for “.overview-list__title-content{” ;
RESULT:
.overview-list__title-content{margin-top:1.5rem;margin-bottom:1.5rem;padding:.5rem 0;color:#313537;font-family:lato,sans-serif;text-transform:uppercase;font-size:1rem;font-weight:700;letter-spacing:.06rem;border-bottom:.1rem solid rgba(49,53,55,.1)}
- Change any property values according to your needs, e.g., I changed the font-size from 1rem (above) to 1.8rem (below); and
.overview-list__title-content{margin-top:1.5rem;margin-bottom:1.5rem;padding:.5rem 0;color:#313537;font-family:lato,sans-serif;text-transform:uppercase;font-size:1.8rem;font-weight:700;letter-spacing:.06rem;border-bottom:.1rem solid rgba(49,53,55,.1)}
- Save the file.
Note that these changes do not impact the font size of the Sections/Lessons listed in the side menu.