MyBB Community Forums

Full Version: how to replace fb connect text with image?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi what do i need to edit to replace the facebook connect text (see pic) with a facebook connect image in using the plugin myfacebook connect
[Image: FBC_zpsbadea469.png]
Can you post the content of your header_welcomeblock_guest template?
YEAH SURE HERE YOU GO M8

<div id="mask"></div>
Welcome guest! Please <a href="{$mybb->settings['bburl']}/member.php?action=login" name="modal" rel="#loginModal">{$lang->welcome_login}</a> or <a href="{$mybb->settings['bburl']}/member.php?action=register">{$lang->welcome_register}</a> &mdash; <a href="{$mybb->settings['bburl']}/myfbconnect.php?action=fblogin">{$lang->myfbconnect_login}</a>

<div id="loginModal" class="modalBox loginModalBox">
<div class="thead">
Login at {$mybb->settings['bbname']}
</div>
<div class="modalContent loginModalContent">
<form method="post" action="member.php">
<table border="0" width="100%">
<tr>
<td>
<label for="login_username">Username:</label>
</td>
<td>
<input type="text" value="" style="width: 200px;" maxlength="30" size="25" name="username" class="textbox" id="login_username" />
</td>
</tr>
<tr>
<td>
<label for="login_password">Password:</label>
</td>
<td>
<input type="password" value="" style="width: 200px;" size="25" name="password" class="textbox" id="login_password" />
</td>
</tr>
<tr>
<td>
<label class="smalltext" title="If ticked, your login details will be remembered on this computer, otherwise, you will be logged out as soon as you close your browser."><input type="checkbox" value="yes" checked="checked" name="remember" class="checkbox"> Remember?</label>
</td>
<td>
<input type="submit" value="Login" name="submit" class="button" />
</td>
</tr>
</table>
<input type="hidden" value="do_login" name="action" />
<input type="hidden" value="" name="url" />
</form>
</div>
</div>
Replace

<a href="{$mybb->settings['bburl']}/myfbconnect.php?action=fblogin">{$lang->myfbconnect_login}</a> 

With

<a href="{$mybb->settings['bburl']}/myfbconnect.php?action=fblogin"><img src="PATH TO IMAGE"></a> 
that worked great thanks