Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] List bullets not appearing outside content flow

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #183417
    jblane
    Participant

    Hello Everyone,

    We’re developing a wordpress site, and the theme we have isn’t allowing List item bullets to appear outside the content flow. We’re confused about what is wrong and how to fix it?

    example: http://www.absawarenessmonth.org/abs-inclusion-toolkit-1/

    #183426
    Soren
    Participant

    Those ticks that are acting like bullets are made with this:

    ul.checkmark li:before {
      content: "\2713020";
      list-style-position: outside;
    }

    Have a look at this. I can explain better in code than words. All of the CSS is from your style.css file.

    #183427
    jblane
    Participant

    Wow! That’s brilliant, thank you so much for your help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.