I was trying to add a awesomefont list style to the <li>
elements.
<ul>
<li>
<i class="fa fa-circle-o"></i>
<a rel="tooltip" data-original-title="To not influence reports" title="">Do not track Events coming from your IP</a>
</li>
<li>
<i class="fa fa-circle-o"></i>
<a rel="tooltip" data-original-title="To not influence reports" title="">Do not track Events coming from your IP</a>
</li>
<li>
<i class="fa fa-circle-o"></i>
<a rel="tooltip" data-original-title="To not influence reports" title="">Do not track Events coming from your IP</a>
</li>
</ul>
and css
li{
list-style:none;
}
But when we resize the window, the li text goes under the list style circle which is not acceptable. I think it should start after the list style circle even if the text goes in the second line.
Can anybody suggest me a better way to do it? Jsfiddle: http://jsfiddle.net/n6bf3/