Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #697708

    Hi,
    I want to assign the bullets the color “yellow” in a list. What should I do?

    Regards
    Morcy

    #698265

    Hey Morcy,

    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Andy

    #698336

    See Private Content

    #698430

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #tab-id-1-container ul {
        list-style: none;
        padding:0;
        margin:0;
    }
    
    #tab-id-1-container li { 
        padding-left: 1em; 
        text-indent: -.7em;
    }
    
    #tab-id-1-container li:before {
        content: "• ";
        color: gold; /* or whatever color you prefer */
    }
    

    Best regards,
    Vinay

    #698473

    That’s it! Thanks so much.

    Best regards

    Morcy

    #698488

    Hi!

    Please feel free to create a new ticket, if anything else is needed.
    Thanks a lot

    Cheers!
    Basilis

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘List bullets color’ is closed to new replies.