I am trying to use Font Awesome 4.0.3 with the -circle
and -o tags
and my icons disappear each time.
I am using it like so: <i class="fa fa-twitter-circle-o fa-2x"></i>
I don't get a blank square or anything else of the sorts; just a blank.
This works: <i class="fa fa-twitter fa-2x"></i>
Shouldn't the first work according to their new naming conventions?
*** EDIT ***
To elaborate a bit, I know I can stack them like you could in 3x, so for the time being, I have the following (since the circle is so thick):
<!-- language: lang-html --><span class="fa-stack fa-lg">
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x"></i>
</span>
Maybe I am misinterpreting the docs on the FA site, but I read it as the other should work.