Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #288327

    Hi,

    is there a way to globally change the bullet color on a bullet list?

    Thanks for the great support!

    #288601

    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

    #288616

    Hi Peter,

    Thanks for the support, that worked.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Bullet List Bullet Color’ is closed to new replies.