I am trying to add a glyph icon as part of an email address link. The icon shows but there is no spacing between the icon and the email address text (I want the hyperlink to include both the icon and the text... including the space). What's the best way to accomplish this?
<a href="mailto:someone@somewheredotcom" title="Some Email">
<span class="glyphicon glyphicon-envelope">someone@somewheredotcom</span>
</a>
If you using only glyphicon
just add one space after </span>
tag like below
<a href="#" class="btn btn-primary"><span class="glyphicon glyphicon-user"></span> Individual</a>
If you using glyphicon
along with font awesome library reference just add fa-fw
at the end of class.
<a href="mailto:someone@somewheredotcom" title="Some Email">
<span class="glyphicon glyphicon-envelope fa-fw">someone@somewheredotcom</span>
</a>