Forum Discussion
Change bullet color in Rise
In Rise, when I change the color of text to white, the bullets remain black. Is there a way to make the bullets the same color as text?
- MargueritaBlakeCommunity Member
Any update on this? The ability to change a bullet point color in Rise seems like such a basic request.
- DonnaBassolinoCommunity Member
Is there any work around by adding custom HTML/CSS somewhere ?
Hi Donna,
Articulate doesn't support modification of Rise output files. But if you are familiar with editing HTML/CSS, you can do the following:
1. Extract your LMS or Web zipped file and open the
main.bundle.css
file found inlib
folder using a text editor (e.g., Notepad, Notepad++, etc.).2. Locate the following text:
fr-view ul
. Then add the following CSS property:color: white
. After adding this property, it should look like the example below:For reference, here is the CSS element again with its properties:
.fr-view ul {
list-style-type: disc;
color: white
}
Make sure to add the semi-colon (;) at the end ofdisc
(as shown above) to make the syntax correct.3. Upload the package to your web or LMS host.With the above change, here is how the bullets look like in my sample course:Note that the above should work if you added the bullets in a Text Paragraph block. The colors for a Bulleted List block are controlled differently and thus will not be affected by the above changes.
- ephraimrossCommunity Member
I haven't had time to really dig in, but there are a bunch of examples of using CSS to adjust colors conditionally based on the background against which they are displaying. If there's a decent coder lurking in this thread, feel free to dive in!
https://codepen.io/ashraftoobler/pen/VeoVPL
https://css-tricks.com/reverse-text-color-mix-blend-mode/
https://stackoverflow.com/questions/50986688/invert-text-color-based-on-background-in-css
- DonnaBassolinoCommunity Member
Thanks for these ideas ...
I'm not sure how it will work because I share module with client who adds it to other mods in their course. so post-processing editing might get messy. But I'll keep it in mnd for future projects. Thanks
- ephraimrossCommunity Member
Whoa, Christopher -- thank you! I hadn't seen your earlier post, but I've been wondering for literal ages if there was a way to decode the encrypted web content from Rise. That opens so many doors!
- NieskeStoelPartner
My vote for this 'feature' to change the color of bulletpoints
- GaryJefferyCommunity Member
It seems that we are still waiting for this update? Is this likely to be resolved at anypoint?
- DavidMcCoyCommunity Member
It's been 5 years..how is it that this issue has not been addressed yet?
- LauraChapoton-6Community Member
+10000 Votes
- DonnaBassolinoCommunity Member
I did this - but it doesn't "save " it ?