Hi Stephanie! Thanks for letting us know this an important feature to you. We have this documented and I'll let our teams know. I still don't have an update for you on this, but if there's anything new I'll let you all know here.
This seems to be something that everyone wants but has not been resolved in three years. Reading through a lot of these threads to help understand the program better I find that there is a lot of discussion from the 360 staff that its on the roadmap and it has been documented but no resolve.
My issue is my bullets are white with a white background and black text. Are we able to have any confirmation about when this will be actually looked at.
5. Copy the decoded text from the bottom textbox and paste into a text editor of your choice, I'm using Sublime Text.
6. Find your bullets by searching for the list item text:
7. Now go to the <ul> parent tag:
and add the color styling like this:
So in above, I added
style=\"color:#FF0000;\"
to <ul> so default bullets become red. Remember the backslashes (\) before the quotes.
8. Now copy all the text from your text editor.
9. Go to https://www.base64encode.org/ , paste the text into the top textbox, make sure these settings are selected:
and tap >ENCODE< button.
10. Copy the encoded text from the bottom textbox and paste to replace over the window.courseData variable text inside the quotes you copied in step 3.
11. Save your changes to index.html and open in browser, bullets should now be the color you want:
If you just see a white screen, make sure you had correct settings in step 9 and included backslashes in step 7.
I think the point is that we shouldn't need to do this outside of the software. Working outside of Rise means that each time you republish the course, you need to update the code, which is a garbage way to work on anything. In my industry, changes and updates happen often, and the functionality should be built within the software as it is for most layout/word processing software on the market today... It's basic text editing which already exists in CSS/HTML workflows, so it seems a bit odd that in the 3 years this issue was put in, nothing has changed.
Trying to give them the benefit of the doubt, but agree in substance.
My IT team just figured out a way to start with collapsed menus, rather than expanded...another feature I've requested. On my wish list, that was an essential feature for usability. One of my "courses" contains dozens of curated content pieces. Opening with a collapsed menu eliminated the long laundry list of resources that overwhelmed our users. Now they just see the major categories and expand only when they want to see the resources within it. My IT team also developed a way to automate changing the html code each time we purplish the course. I will share on a collapsed menu thread for the community once I have the code and how it was automated. This just happened this week.
Wow! That's a lot of work. Thanks so much for sharing this work-around. Perhaps because you have dug deep into the code that by sharing it with everyone might help the Articulate folks expedite adding this functionality.
I love the Articulate product line, community, heroes, staff and support teams. Everyone is so helpful and supportive. The number of feature requests is undoubtedly large in number and have to be prioritized. As an ID, this is just one of those things that would make all the difference on the design end. Admittedly, not the biggest fish to fry.
This is part of what Articulate promotes on their Rise 360 page:
Author quickly on the web A browser is all you need to create lessons optimized for desktop, tablet, and mobile devices.
This is exactly why I use Rise. I mean, Rise is limiting in a lot of ways, but it's quick and easy to get fairly good results. I think it's designed to appeal to people who are not coding experts or simply don't have the time to fiddle around with hundreds of lines of code to change the color of a bullet. If I would want to do this, I would just build my courses from scratch and get exactly what I want. This is like buying a new car and having to get under the hood everytime I need to start the damn thing.
We're just asking for very basic functionality, not an obscure feature that would be useless for most people. Having to do workarounds like this defeats the purpose and provides another incentive for Articulate to do nothing.
I found a way to change the colour of the bullets.
Its by not having them at all. Just manually insert a bullet character or glyph. This allows you to change the colour but also change the size because its typed in and not a preset.
That doesn't give you proper bullet formatting though, i.e. if the text is more than one line, the second line of text will go below the bullet rather than indented and aligned with the line above.
Hi, folks. I'm sorry that bullet color is causing this friction. The text editor we use in Rise authoring doesn't allow this formatting option, and we're continuing to explore how to get around that. Because it would be such a broad change to Rise authoring, it isn't something we want to take lightly.
We'll update you if we have a solution for these types of formatting needs with text in Rise.
Still doesn't appear to be resolved (looks like this request has been around for 3 years). Please tell me I'm wrong and if not please re-raise as 3 years is a long time to wait for a resolution. Thanks :-)
Ah once again an issue that everyone is screaming to be fixed, but as long as we all keep paying the subscription they won't need to bother fixing it. And of course we all keep paying the subscription as otherwise we can't make courses. It's a catch 22.
Of course after 3 years of an issue not being fixed - its not really likely they will ever bother as its not stopped anyone paying. Or not anyone significant enough...
Hi Marie! Thanks for following up on this! No updates yet on the ability to customize bullet points. We'll update this thread once we have some news to share.
Yes, we need this feature enabled so we can produce a better product for our clients, not all pages are built equal, not all courses have to have the same design. As this product becomes more popular, we need the ability to bring our design ideas into the platform without basic limitations. Thank you.
Thank you @Joyce - this is a good idea but doesn't help with the indentation of the content when it contains more than one line of text, nor enables the animation that Rise produces on bulleted items.
I know it's been a few years now but I would like to upvote this. Color blocking is a very common way to show a noticeable change in chapters and sections and the black bullets on a colored background can often make them disappear.
324 Replies
Hi Cat! Sorry, no updates on this yet. This is our current roadmap. If we make any changes, we'll let you know here.
Hey Renz - ah that's a shame. Hopefully soon it an get on the list :)
Hello - Has this been resolved? Would be very helpful for me.
Hi Stephanie! Thanks for letting us know this an important feature to you. We have this documented and I'll let our teams know. I still don't have an update for you on this, but if there's anything new I'll let you all know here.
This seems to be something that everyone wants but has not been resolved in three years. Reading through a lot of these threads to help understand the program better I find that there is a lot of discussion from the 360 staff that its on the roadmap and it has been documented but no resolve.
My issue is my bullets are white with a white background and black text. Are we able to have any confirmation about when this will be actually looked at.
It's possible to change bullet colors in Rise by editing HTML after exporting:
1. Export your course from Rise.

2. Open index.html which is in the root of output folder for Web or XAPI output, in scormcontent folder for SCORM 1.2 output.
3. Copy the contents of window.courseData variable - literally all the text in-between the quotes:
4. Go to https://www.base64decode.org/ , paste contents into the top textbox, and tap <DECODE> button.
5. Copy the decoded text from the bottom textbox and paste into a text editor of your choice, I'm using Sublime Text.
6. Find your bullets by searching for the list item text:

7. Now go to the <ul> parent tag:
and add the color styling like this:
So in above, I added
to <ul> so default bullets become red. Remember the backslashes (\) before the quotes.
8. Now copy all the text from your text editor.
9. Go to https://www.base64encode.org/ , paste the text into the top textbox, make sure these settings are selected:

and tap >ENCODE< button.
10. Copy the encoded text from the bottom textbox and paste to replace over the window.courseData variable text inside the quotes you copied in step 3.
11. Save your changes to index.html and open in browser, bullets should now be the color you want:

If you just see a white screen, make sure you had correct settings in step 9 and included backslashes in step 7.
I think the point is that we shouldn't need to do this outside of the software. Working outside of Rise means that each time you republish the course, you need to update the code, which is a garbage way to work on anything. In my industry, changes and updates happen often, and the functionality should be built within the software as it is for most layout/word processing software on the market today... It's basic text editing which already exists in CSS/HTML workflows, so it seems a bit odd that in the 3 years this issue was put in, nothing has changed.
Trying to give them the benefit of the doubt, but agree in substance.
My IT team just figured out a way to start with collapsed menus, rather than expanded...another feature I've requested. On my wish list, that was an essential feature for usability. One of my "courses" contains dozens of curated content pieces. Opening with a collapsed menu eliminated the long laundry list of resources that overwhelmed our users. Now they just see the major categories and expand only when they want to see the resources within it. My IT team also developed a way to automate changing the html code each time we purplish the course. I will share on a collapsed menu thread for the community once I have the code and how it was automated. This just happened this week.
Thanks again for sharing your code.
Wow! That's a lot of work. Thanks so much for sharing this work-around. Perhaps because you have dug deep into the code that by sharing it with everyone might help the Articulate folks expedite adding this functionality.
I love the Articulate product line, community, heroes, staff and support teams. Everyone is so helpful and supportive. The number of feature requests is undoubtedly large in number and have to be prioritized. As an ID, this is just one of those things that would make all the difference on the design end. Admittedly, not the biggest fish to fry.
Thanks again for your contribution!
Christopher,
This is part of what Articulate promotes on their Rise 360 page:
Author quickly on the web
A browser is all you need to create lessons optimized for desktop, tablet, and mobile devices.
This is exactly why I use Rise. I mean, Rise is limiting in a lot of ways, but it's quick and easy to get fairly good results. I think it's designed to appeal to people who are not coding experts or simply don't have the time to fiddle around with hundreds of lines of code to change the color of a bullet. If I would want to do this, I would just build my courses from scratch and get exactly what I want. This is like buying a new car and having to get under the hood everytime I need to start the damn thing.
We're just asking for very basic functionality, not an obscure feature that would be useless for most people. Having to do workarounds like this defeats the purpose and provides another incentive for Articulate to do nothing.
I found a way to change the colour of the bullets.
Its by not having them at all. Just manually insert a bullet character or glyph. This allows you to change the colour but also change the size because its typed in and not a preset.
Hi Articulate team, any updates on this?
That doesn't give you proper bullet formatting though, i.e. if the text is more than one line, the second line of text will go below the bullet rather than indented and aligned with the line above.
Hi, folks. I'm sorry that bullet color is causing this friction. The text editor we use in Rise authoring doesn't allow this formatting option, and we're continuing to explore how to get around that. Because it would be such a broad change to Rise authoring, it isn't something we want to take lightly.
We'll update you if we have a solution for these types of formatting needs with text in Rise.
Thank you for the update, Crystal! Good to know you have eyes on this.
Adding myself to the chorus so I can hear when this is updated.
+1 vote bullets still show up black, when all other copy is white on dark orange background. :(
Still doesn't appear to be resolved (looks like this request has been around for 3 years). Please tell me I'm wrong and if not please re-raise as 3 years is a long time to wait for a resolution. Thanks :-)
Ah once again an issue that everyone is screaming to be fixed, but as long as we all keep paying the subscription they won't need to bother fixing it. And of course we all keep paying the subscription as otherwise we can't make courses. It's a catch 22.
Of course after 3 years of an issue not being fixed - its not really likely they will ever bother as its not stopped anyone paying. Or not anyone significant enough...
Circling back to this one. Any chance that this has been updated yet?
Hi Marie! Thanks for following up on this! No updates yet on the ability to customize bullet points. We'll update this thread once we have some news to share.
+1 vote here too.
Yes, we need this feature enabled so we can produce a better product for our clients, not all pages are built equal, not all courses have to have the same design. As this product becomes more popular, we need the ability to bring our design ideas into the platform without basic limitations. Thank you.
Thank you @Joyce - this is a good idea but doesn't help with the indentation of the content when it contains more than one line of text, nor enables the animation that Rise produces on bulleted items.
I know it's been a few years now but I would like to upvote this. Color blocking is a very common way to show a noticeable change in chapters and sections and the black bullets on a colored background can often make them disappear.