Reputation: 9288
I have a font-awesome icon and a big text. Now, the second line (and the others) starts right under the icon, but I want that it starts under first letter. How can I set alignement? This is link to JSBin
font-awesome
Upvotes: 0
Views: 57
Reputation: 7217
Try to use this in your css: Demo
li i{ margin-left:-25px; padding:0 5px; }
Upvotes: 4