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'm using Twitter's tweet button, Facebook's like button and Google's +1 button. I've tried styling them with my own external CSS file as well as inline CSS. But, it seems that no matter what adjustments I make to the CSS, it ultimately gets overruled by either FB's, twitter's or Google's CSS from their API. I need to make the buttons found here line up neatly. I tried setting the floats of each button to left. But, that didn't work.

share|improve this question

1 Answer

up vote 0 down vote accepted

You can use !important to make sure your style rules get applied.

For example,

button {
   padding: 4px !important;
}

If the facebook, twitter, whatever framework sets the button's padding to 8px, this would reset it to 4px.

Working example: http://jsfiddle.net/yLEwS/. Try removing !important from both lines and see what happens.

share|improve this answer
Um. Sorry. I'm not a designer first and foremost. Can you enlighten me? – Lance Mar 10 at 7:35
thanks! I'll give that update a try. – Lance Mar 10 at 7:36
If you add !important to a CSS rule, it will override whatever else is more specific than it. It's a way of saying, "Hey, apply my style no matter what." – ktm5124 Mar 10 at 7:36
Cool. That's nice to know. I never knew such a rule existed in CSS. It works like a charm. Thanks a bunch! – Lance Mar 10 at 7:52
Pro tip: keep in mind that as you override the Google+ +1 button CSS, it still needs to adhere to our branding guidelines. You can find these at developers.google.com/+/branding-guidelines. – Joanna Mar 11 at 20:46

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.