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?
ChristopherEman
5 years agoCommunity Member
Until changing bullet color is a feature, here's a messy workaround:
At end of index.html:
- Add jquery CDN script
- Add code:
<script type="text/javascript">
$(window).on('load', function() {
$( "li:contains('Unique text in your list item')" ).css( "color", "#FFF" );});
</script>