The Bootstrap framework includes a bunch of awesome icons, which you include in your markup using a custom <i> tag. But some tools (ahem, Sitefinity CMS) like to autocorrect your HTML, so it doesn’t play nicely with the <i> tag. But you can use a DIV instead.
So instead of:
<i class="icon-remove" />
use:
<div class="icon-remove" />