Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1071794

    Hi,

    I would like to change all the bulletpoints from standard dots to a minus symbol (-). How can I do that?

    Thanks for your help!
    Simon

    #1071812

    Hey Simon,

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

    CSS Snippet:

    
    .entry-content-wrapper ul {
        list-style: none;
    }
    .entry-content-wrapper ul li:before {
        content: "- ";
    }
    
    

    Best regards,
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.