I have recently had a working iFrame for my website to get this going, but I have recently noticed its not so compatible with mobile devices and swapped to HTML5, but it doesn't seem to work for me at all.
This is my code just after the body:
<div id="fb-root"></div>
<script>
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=<206947609436947>";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script','facebook-jssdk'));
</script>
This is the code in the area I want it to display:
<div class="fb-like-box" data-href="http://www.facebook.com/StephenBrumwellDesign" data-width="250" data-height="762" data-show-faces="false" data-stream="true" data-border-color="#CCC" data-header="true"></div>
Any help would be great!