Tagged: bullet list
Hi,
is there a way to globally change the bullet color on a bullet list?
Thanks for the great support!
Hi Snerp!
You can’t (at least directly) change the bullet color without changing the text color. The only workaround would be to wrap your text into spans with style attributes or css classes which apply a different color to the text. If you want to change the color of the bullet lists use:
#top .main_color ul li{
color: #333;
}
and replace #333 with your custom color value. If you want to use a different font color wrap your text into spans like:
<ul>
<li><span class="my_custom_li_color">My Text</span></li>
<li><span class="my_custom_li_color">Some Other Text</span></li>
</ul>
and then use css code:
#top .main_color ul li .my_custom_li_color{
color: #ff0000;
}
to change the font color of the text only.
Regards,
Peter
Hi Peter,
Thanks for the support, that worked.