Forum Discussion
SusanDemers-167
5 years agoCommunity Member
Move Start Course button?
In Rise, is it possible to move the Start Course button to immediately below the introductory course text? I'm certain learners are starting the course before reading this important course info.
KristynKallas
Community Member
Hi John,
Do you have javascript on how to change the background color of the start button?
JohnPinkster-19
4 months agoCommunity Member
No Javascript needed! Just a simple CSS line that you can add to your course once it is published .. this should work for most themes
#app .cover__header-content-action-link {
background-color: #CA00B2 !important;
}
- KristynKallas4 months agoCommunity Member
I apologize, new to code here... where would you put this? in the New Move button file or the original index.html file?
I was able to "inspect" the page and change it there but there doesn't seem to be a way to save those changes.- PhilFoss4 months agoCommunity Member
You can add it to index.html if you wrap it in <style> tags, but I recommend making a new folder called 'theme' and keeping all your theme components in there. I walk through the process in one of my first Rise how-to videos:
- JohnPinkster-194 months agoCommunity Member
PhilFossfor the win!