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.

With the Facebook Login Button, the HTML5 version needs the code

<div class="fb-login-button" data-show-faces="true" data-width="200" data-max-rows="1"></div>

but where is fb-login-button defined?

share|improve this question

1 Answer

up vote 5 down vote accepted

Well, the first place to look is the Facebook Connect JS API.

<div class="fb-login-button">Login with Facebook</div>

gets transformed into:

<div class="fb-login-button">
  <a class="fb_button fb_button_medium">
    <span class="fb_button_text">Login with Facebook</span>
  </a>
</div>

The "added" classes you can find defined in the Facebook JS. The fb-login-button class doesn't seem to have any styling applied directly to it, I think its just a placeholder (you can use <fb:login-button> in the same way.)

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.