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 can't for the life of me figure out how to do it with just CSS, I think because their javascript overrides it, even if I use !important. Therefore I tried loading the javascript using JQuery's $.getScript() function but then it doesn't even work.

I would like it just to be a simple black border.

URL: http://www.imvu-e.com/products/sro/

share|improve this question
changing facebook's plugins is against their policy... – ahren Jul 24 '12 at 5:09
It changed doing it through firebug doing it on this element: .button_count a.connect_widget_like_button - i added a 1pc black border. Is that the line you tried it on? Make sure your css is loading after the FB button is being called. – Billy Moat Jul 24 '12 at 5:12
Try border: 1px solid black. It looks like you're just changing the color. – Torr3nt Jul 24 '12 at 5:18
Yes I can change it using firebug or chrome too, but cannot get the CSS to load after the FB button. Thats the issue I think. I have tried border: 1px solid black – BHare Jul 24 '12 at 6:35

1 Answer

up vote 1 down vote accepted

Instead of trying to override facebook's css, I just ended up wrapping a div around the button and put a border around that. This code worked pretty good to get an effect I wanted:

<div style="border: 1px solid black; background: #ECEEF5 url('http://i.imgur.com/y8DyO.png'); width: 49px; height: 20px; border-radius: 3px;">
     <!--  INSERT FACEBOOK LIKE DIV HERE -->
</div>

Note: background: #ECEEF5 url('http://i.imgur.com/y8DyO.png'); was added so that the div has a background the same as the like button so for that split second while javascript is running, you won't see a flicker from no background to facebook's #ECEEF5.

Result:

black bordered facebook like

share|improve this answer

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.