Need help with centering a paragraph element (email) that is larger than its container:
https://i.sstatic.net/f3E55.png
Here's the code I have so far:
<div class="col-lg-2 col-lg-offset-1 text-center">
<a href="mailto:{{ site.email }}">
<i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>{{ site.email }}</p>
</a>
</div>
I've attempted to use text-center on the paragraph element directly, but it isn't working. Any suggestions on how to properly center this element?