views:

560

answers:

1

Is there an (easy) way to customise the look of the facebook like button implemented via fbml?

I am pretty sure I saw this somewhere, but I cant remember where and I cant find any documentation on this.

+1  A: 

Although it may not even be legal to do so (check the terms and policies for yourself), you could do something like:

/* Like button main text color */
div.like span.connect_widget_text {color:#fff;}
div.like div.connect_widget_confirmation {color:#fff;}
div.like span.connect_widget_text a {color:#ffc6ff;}

this link shows some mild styling options:

http://forum.developers.facebook.net/viewtopic.php?pid=236534

gamerzfuse
I checked the policies, it explicitly says: "While you may scale the size to suit your needs, you may not modify the Like Button in any other way (such as by changing the design)." -> http://www.facebook.com/brandpermissions/logos.php good hint, thanks!
Max

related questions