Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using SOCIAL PLUGINS LIKE BOX
and would like to control the styling beyond what FB gives you here

this example i am trying to hide the icon with no luck
question: how do you target this iframe to control its elements?

heres my code in css

.fb-like-box .connect_top a img{display:none !important;}

and with jQuery

$('.fb-like-box .connect_top a img').css({'display':'none'});

enter image description here enter image description here

share|improve this question
why the down vote? – t q Aug 10 '12 at 15:21

1 Answer

up vote 0 down vote accepted

Try this HTML :

<iframe id="fb_like_box" src="//www.facebook.com/plugins/like.php?href=<URL TO YOUR PAGE>&amp;send=false&amp;layout=button_count&amp;width=150&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" allowtransparency="true"></iframe>

But replace with real url to page to like.

share|improve this answer
that did it, where can i find a list of attributes like show_faces? now im trying to hide the pluginCountButton – t q Aug 9 '12 at 16:25
this made it as plain as possible #fb_like_box{clear:both; width:45px; height:25px; display:block; margin-bottom:40px;} – t q Aug 9 '12 at 16:43
You can not access to DOM of iframe of plugin box because iframe loads from another domain(from facebok.com). – user1587955 Aug 10 '12 at 9:18
If you want to use like box without some elements then try ti use : Like button plugin – user1587955 Aug 10 '12 at 9:20
yes, thats what i originally used but it does not give you full control – t q Aug 10 '12 at 12:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.