[Resolved] Turn Bullet Points into Checkmark Image

Home Forums Support [Resolved] Turn Bullet Points into Checkmark Image

Home Forums Support Turn Bullet Points into Checkmark Image

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1419155
    John

    What’s the easiest way to turn all the bullet points into checkmarks?

    #1419188
    Leo
    Staff
    Customer Support
    #1419190
    John

    EXACTLY! So I just create the

      list and then put this in CSS?

      ul {
      list-style: none;
      }

      ul li:before {
      content: ‘βœ“’;
      }

    #1419191
    John

    Is it possible to make the checkmark a certain color? What would I add to the CSS to do that?

    #1419192
    Leo
    Staff
    Customer Support

    Yup give that a shot first and guide me to the page.

    #1419228
    John

    It added bullet point in my menu though? πŸ™

    http://www.drysolutions.com/mold-prevention/

    #1419313
    Leo
    Staff
    Customer Support

    Try this instead:

    .entry-content ul {
        list-style: none;
    }
    .entry-content  ul li:before {
        content: 'βœ“';
        color: #000;
    }
    #1419414
    John

    Worked great! Thanks.

    #1419416
    Leo
    Staff
    Customer Support

    No problem πŸ™‚

    #1419458
    John

    One more issue. I created a UL in an element and the checkmark isn’t showing up there. How do I get that to happen?

    #1419459
    Leo
    Staff
    Customer Support

    Where can I see the issue?

    #1419544
    John

    The Home page http://www.drysolutions.com Near the bottom.

    #1419560
    Leo
    Staff
    Customer Support

    Hmm that section is outside the normal page content.

    How are you adding it?

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