Is there any way to customize or build the Facebook button strong>?
I would like a custom because the original does not fit the design of the mobile app I'm developing.
Is there any way to customize or build the Facebook button strong>?
I would like a custom because the original does not fit the design of the mobile app I'm developing.
There is a plugin called Fancylike
that should serve the purpose.
Include the plugin:
<script src="jquery.fancylike.js"></script>
Create a container for the button:
<div class="fancylike-fb-like"></div>
Call the plugin, with automatic URL detection :
<script type="text/javascript">
$(document).ready(function(){
$(".fancylike-fb-like").fancylike();
});
</script>