0

I want to know how to accomplish something similar to this in wordpress. Any suggestions? maybe a sample code.

enter image description here

Can you show me an example how to apply it to the sub bullets?

Pao Rad
  • 61
  • 1
  • 1
  • 7

3 Answers3

3

You could use li:before{ content:"....";} to make an arrow? Like this:

<ul>
    <li>Disaster</li>
    <ul>
        <li>stuff</li>
        <li>Stuff2</li>
    </ul>
</ul>

CSS:

ul ul li:before {

         content: "\2192 \0020";
}
ul ul {
    list-style: none;
}

See it in function here, on this fiddle: http://jsfiddle.net/f9AzK/

Frederik Spang
  • 3,379
  • 1
  • 25
  • 43
2

Yup. Use CSS, list-style-image.

http://www.w3schools.com/cssref/pr_list-style-image.asp

Dan H
  • 606
  • 4
  • 6
2

Use li:before { content: ...; }

HTML

<ul>
    <li>Disater Assistance Center Manager
        <ul id="sub">
            <li>San Jaun</li>
        </ul>
    </li>
</ul>

CSS

#sub { list-style:none; }
#sub li:before {
    content: "\2192 \0020";
}

JSFiddle

Other special characters can be found here.

Danny
  • 7,368
  • 8
  • 46
  • 70