MyBB Community Forums

Full Version: Link Images in Bottom Bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to add some link images in the bottom bar of my forum but I don't know where to start so any information would be gratefully appreciated. This is where I would like them to go:
[Image: 2rztf12.png]
I would also like them to open a new tab or window and goto that linked website. I know I am asking alot and I don't want to be rude but don't think I want it to be all done for me as I want to learn it myself.

Harry Smile
admin panel --> templates --> your theme's templates --> footer templates --> footer

at the bottom you can add links like below :
<a href="link URL" target="_blank">link text OR image code</a>

image code can be like this : <img src="image path" />

see html reference tutorials
Thank you.

Harry Smile
How do I make the image links display across to the right instead of going down? Here is part of my footer:
<hr class="hidden" />
		<div id="copyright">
			<div id="debug"><debugstuff></div>
			<!-- MyBB is free software developed and maintained by a volunteer community. 
				 It would be much appreciated by the MyBB Group if you left the full copyright and "powered by" notice intact, 
				 to show your support for MyBB.  If you choose to remove or modify the copyright below, 
				 you may be refused support on the MyBB Community Forums.
				 
				 This is free software, support us and we'll support you. -->
<div class="powered_by">{$lang->powered_by} <a href="http://mybb.com/" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://mybb.com/" target="_blank">MyBB Group</a>.</div>
			<!-- End powered by -->
<div class="designed_by">Theme by Ryan McGrane of <a href="http://audentio.com">Audentio Design</a></div>
		</div>
<br>
<a href="http://www.armaholic.com" target="_blank" title="Armaholic.com">
<img src="http://www.armaholic.com/skins/Blaster07/img/linkus.gif" alt="International fansite covering the Arma series - Armaholic.com" />
</a>
<br>
<a href="http://armedzone.com" title="ArmedZone.com - WarGame Media" target="_blank"><img src="http://armedzone.com/azbanner.gif" /></a>
<br class="clear" />
<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE -->{$task_image}<!-- End task image code -->
{$auto_dst_detection}
	</div>
If you goto my forum here you will see what I mean.

Harry Smile