tags:

views:

23

answers:

1

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
Isn't it inside an iframe?
serg

related questions