I want to know how to accomplish something similar to this in wordpress. Any suggestions? maybe a sample code.
Can you show me an example how to apply it to the sub bullets?
I want to know how to accomplish something similar to this in wordpress. Any suggestions? maybe a sample code.
Can you show me an example how to apply it to the sub bullets?
Yup. Use CSS, list-style-image.
http://www.w3schools.com/cssref/pr_list-style-image.asp
Use
li:before { content: ...; }
HTML
CSS
JSFiddle
Other special characters can be found here.
You could use
li:before{ content:"....";}
to make an arrow? Like this:CSS:
See it in function here, on this fiddle: http://jsfiddle.net/f9AzK/