I used this fb like tag
<fb:like href="http://www.facebook.com/favoritebibleverses" send="false" width="300" height="30" show_faces="false" font="" ></fb:like>
and I wanted to center it’s content.
I’ve tried these but nothing works properly
<fb:like href="http://www.facebook.com/favoritebibleverses" send="false" width="300" height="30" show_faces="false" font="" text-align="center" ></fb:like>
<fb:like href="http://www.facebook.com/favoritebibleverses" send="false" width="300" height="30" show_faces="false" font="" style='text-align:center;' ></fb:like>
You will need to encapsulate the code in a
divin order for it to work. Center thedivand the content contained inside will be centered as a result. I believe that fb:like results in aniframebeing created which prevents it from being centered without a surroundingdiv.Alternatively, you may also use the
<center></center>tags in order to center the content.