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 have this line of code, it works fine. But instead of showing the text 'Login via Facebook' I want to show the the facebook connect button (image). How do I do that?

<li><a href="#" onclick="aw_fb_login(); return false;"><?php echo $this->helper('fbintegrator')->__('Login via Facebook'); ?></a><li>

Thanks

share|improve this question

closed as not a real question by Niko, AlienWebguy, CBroe, Igy, Bill the Lizard Mar 24 at 14:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

I'd start with this and go from there:

helper('fbintegrator')->__('<img src="/path/to/facebookConnect.png" />');
share|improve this answer
hey AlienWebguy - that worked perfectly thanks!! – Bal Jassal Feb 22 at 17:39
Glad to help :) – AlienWebguy Feb 22 at 18:22
<li><a href="#" onclick="aw_fb_login(); return false;">
 <?php echo helper('fbintegrator')->__('<img src="/path/to/image.png" alt=""/>'); ?>
</a><li>
share|improve this answer

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