View Single Post
  #9 (permalink)  
Old 03-04-2008, 09:09
RSVEcosse RSVEcosse is offline
Senior Member
 
Join Date: Mar 2007
Posts: 358
Default

Quote:
Originally Posted by fire13 View Post


I'm using the SMF board & was wondering if it was possible to include a link back to my site?

Please tell me if I should ask this on their site. I did some searches on it but to no avail.

Thanks

To have a "click" on your sites main banner take you back to your sites homepage, this code should do the trick ( additions required are in bold and red text ) :-

Code:
// The logo, user information, news, and menu.
	echo '
	<table cellspacing="0" cellpadding="0" border="0" align="center" width="95%" class="tborder">
		<tr style="background-color: #ffffff;">
			<td valign="middle" align="left"><a href="HOMEPAGEURL" target="_blank"><img src="', !empty($settings['header_logo_url']) ? $settings['header_logo_url'] : $settings['images_url'] . '/smflogo.gif', '" alt="" /></a></td>
			<td valign="middle">';

You can change the behaviour of the "HOME" button on the SMF forums so that clicking on that returns you to the home page of your main site rather than the main index of your forums. I'll dig out the code for that method and post back shortly.

Hope that helps.
Reply With Quote