want to add simple facebook "like" module to my site. im using code generated from facebook developer site added this right after opening body tag:
<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/pl_PL/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
and later inside the page:
<div class="fb-like" data-href="my site url here" data-send="false" data-width="550" data-show-faces="false"></div>
it seems to work fine except this code is giving me many css/js warnings that i see in the firebug like:
unknown property „-moz-border-radius”, unknown property: "moz-outline-style.3",[],function(a,b,c,d,e,f){(function(){var g={}.toString,h,i,j,k=e.exports={},l...
there are many such errors.
Do you know how to fix this? the whole page seems to work fine but i don't like to have this kind of issues on my page. im using jquery inside this page also so maybe this cause some problems?