I'm having an issue trying to align an icon next to a paragraph in Bootstrap. The icon is currently displaying above the paragraph instead of beside it, as shown in this example.
Below is the code I am using:
<div class="row-fluid">
<div class="span1"><p class="icon"><i class="glyphicon glyphicon-hand-right"></i></p></div>
<div class="span11"><p class="text"><strong>Teacher Management:</strong> Here you can manage the details belongs to the teacher, by clicking the link "Teacher Management" you can view the table displaying all the teachers minimum information. The "Create New" link just above the table allow you to fill up new teacher information and the links available in the table like view, edit and delete allow you to view detailed information, to update/edit the information, to delete the information respectively.</p></div>
</div>
Any suggestions on how to position the paragraph to the right of the hand icon?