Viewing 1 replies (of 1 total)
  • to print a right arrow you could use the pseudo class :before this way:

    in the html:

    <ul>
       <li>blah blah</li>
       <li>blah blah</li>
       <li>blah blah</li>
    </ul>

    in the css:

    ul { list-style:none; }
    ul li:before { content: "\2192 020"}
    /* 2192 is the ascii for the right arrow, 0020 is the ascii for the single space */

    Or you could use an image with list-style in the css… ??

Viewing 1 replies (of 1 total)
  • The topic ‘Bulletlist css problem’ is closed to new replies.