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.

Currently I have the following button, when using facebook javascript:

enter image description here

and I want to get this one:

enter image description here

What should I change?

Currently the way I did this is using the following code:

<div id="fb-root"></div>
      <script src="http://connect.facebook.net/en_US/all.js"></script>
      <script>
         FB.init({ 
            appId:'YOUR_APP_ID', cookie:true, 
            status:true, xfbml:true 
         });
      </script>
      <fb:login-button>Login with Facebook</fb:login-button>
share|improve this question

3 Answers

up vote 0 down vote accepted

With Facebook PHP-sdk you can replace it with any button or icon

<?php if ($me) { ?>
  <a href="<?php echo $logoutUrl; ?>"><img src="logout-image.png"></a>
<?php } else { ?>
  <a href="<?php echo $loginUrl; ?>"><img src="login-image.png"></a>
<?php } ?>

Or http://fbrell.com/xfbml/fb:login-button

share|improve this answer

For that particular button, you will have to include the image yourself and bind the functionality with one of the SDKs available: http://developers.facebook.com/docs/sdks/

I personally prefer using the JS SDK to open the login prompt.

You can use regular login button, which is the approach that @MNVR has described in his answer.

share|improve this answer

Just replace the text "Login With Facebook" with "Connect With Facebook" in your login button code. Or use the below code.

<div id="fb-root">
        </div>
        <script src="http://connect.facebook.net/en_US/all.js">
        </script>
        <fb:login-button>Connect with Facebook</fb:login-button>
        <script>
          FB.init({
            appId: '123456',
            cookie: true,
            status: true,
            xfbml: true
          });

        </script>
share|improve this answer
Actually that's going to render regular login button: developers.facebook.com/docs/reference/plugins/login , not the one that he wants. – manuelpedrera Mar 25 '11 at 20:45
yes...that's not what I want... – aherlambang Mar 25 '11 at 21:01
@Equinox, can you please elaborate what you want to do (may be how you got that "Login With Facebook" Button). If you don't mind, please read this tinyurl.com/so-hints before editing your question. – MNVR Mar 25 '11 at 21:35
edited my initial question – aherlambang Mar 25 '11 at 22:43
Then you should get what you want by replacing "Login with Facebook" by "Connect With Facebook" in the last line of your code. Isn't that you want? – MNVR Mar 26 '11 at 6:07
show 1 more comment

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.