MyBB Community Forums

Full Version: Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i add an image that links to a different forum to the top right hand corner of my forum. Here is where i want it:

[Image: 2011-04-08_2042.png]
Add this code in your header template under the logo code:
<div align="right"><a href="LINK" target="_blank"><img src="IMAGE LINK" title="TITLE" /></a>

Note: Remove target="_blank" from the link code if you don't want when someone click the image to open the link in new tab!
Go to: ACP > Templates > header Templates > header > find;
<div id="header">
and add the following code just after that;
<div class="float_right"><img src="IMAGE_URL_GOES_HERE"></div>
(2011-04-08, 07:48 PM)Yaldaram Wrote: [ -> ]Go to: ACP > Templates > header Templates > header > find;
<div id="header">
and add the following code just after that;
<div class="float_right"><img src="IMAGE_URL_GOES_HERE"></div>

I see you do this on every post, is it necessary to post that after WbDev already did?
(2011-04-09, 04:23 AM)Jason L. Wrote: [ -> ]I see you do this on every post, is it necessary to post that after WbDev already did?

Its different from what Wbdev posted above.
Thanks everyone. I actually used both. I used Yaldaram's
<div class="float_right"><img src="IMAGE_URL_GOES_HERE"></div>
but also added part of WBdevs one so it links to another site. Thanks both of you. I needed both so that was great. Big Grin