Site logo

[Resolved] Bullets customization

Home Forums Support [Resolved] Bullets customization

Home Forums Support Bullets customization

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1660086
    Manuela

    Hello,

    Could you help me change the color of the bullets from black to #dab152?

    Thank you,

    #1660278
    David
    Staff
    Customer Support

    Hi there,

    you will need to add this CSS:

    .entry-content ul li {
      list-style: none;
      position: relative;
    }
    
    .entry-content ul li:before {
      content: "\2022";
      color: #dab152;
      font-size: 1.5em;
      line-height: 1.7em;
      font-weight: bold;
      position: absolute;
      left: -0.75em;
    }
    #1660659
    Manuela

    Great, thank you!

    #1660873
    David
    Staff
    Customer Support

    You’re welcome

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