Forum Discussion
JCBlanchard
7 years agoCommunity Member
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?
DonnaBassolino
Community Member
Is there any work around by adding custom HTML/CSS somewhere ?
Chris-Santos
2 years agoStaff
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 in lib
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 of
disc
(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.