Forum Discussion
Change bullet color in Rise
While we're waiting for a software solution from Articulate, there is a workaround if you know a bit about HTML and CSS. This only works for the published Rise courses in HTML format sitting locally on your machine.
Locate the 'main.bundle.css' file in the 'lib' folder of the published course. Open in a text editor. You can add CSS code here to the very bottom of the document to either change the colour of bullets throughout the document, or for specific bullets on certain pages.
For instance, the following code changes the colour of all bullets throughout. Please note: I can't vouch for this not breaking something, as I haven't thoroughly tested it - but it seems to work fine on first inspection.
ul {color: rgb(196,47,0);}
The numbers between the brackets relate to RGB colours. You can change this easily to any colour you wish.