I'd like to disable the Comment box that pops up when a user clicks the Facebook (fbml) Like button I've placed on my site. Is this possible to do? I can't find any details in the documentation.
|
|
Simplest fix to hide the comment box after Facebook Like (XFBML version not the iframe one) is as given:
Put the CSS style in any of your CSS file and see the magic, it works :) |
|||||||||||||||
|
|
Putting the iframe in a appropriately sized div with overflow set to hidden resolved this issue - although this is only actually hiding the problem as such. |
|||||||||||||
|
|
i use this in my css
and reder the facebook button with the normal html5 code, something like this:
gr- |
|||||||
|
|
I like Mohammed Arif solution.. and i choose it as the best answer .. but in case FB changed classes, then the below will always work..
where "like_button_holder" is "YOUR" div id holding the facebook like button code |
||||
|
What I did is crate a div for the "like" button like this:
And this is the CSS :
|
||||
|
|
|
I couldn't get the Dropping the following in my main css file did the trick:
|
||||
|
|
|
Agree with BrynJ, best solution currently is to put the like button in a 20px high div container, and set the overflow to hidden (I read somewhere that FB recently moved the comment flyout into the iFrame, so the solution that modifies the styling of .fb_edge_widget_with_comment is probably not useful anymore for iFrame users). Using AddThis? Do this:
|
|||
|
|
|
Hiding the comment box work but can create problem if you have clickable element behind the comment flyout box. You have to hide it and remove it from the DOM post like. Here is the CSS to hide the comment box:
Here is the JQuery way of removing the DOM element:
Here is the pure javascript way using provided widget from the callback:
|
|||
|
|
|
Lets try this one:
|
|||
|
|
|
The overflow height options mentioned above shouldn't be used when |
|||
|
|
|
Not to be a Debby Downer here, but doesn't hiding the comments box violate Facebook Policy? IV. Application Integration Points d. You must not obscure or cover elements of our social plugins, such as the Like button or Like box plugin. |
|||
|