I am integrating facebook comments, but i want to remove like button from it.Plz help
+1
A:
The only way to achieve that is by simply not displaying it.
When calling the fb:comments tag, you can specify which CSS file to apply to it
FBML:
<fb:comments title="myTitle" url="myUrl" css="myCss" > </fb:comments>
CSS:
#comments_home .like{
display:none;
}
Jasper De Bruijn
2010-10-21 07:51:29
Isn't it inside an iframe?
serg
2010-10-21 15:43:01