MyBB Community Forums

Full Version: Need to place animated gif on upper corner of page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
CoolHi everybody, I want to place an animated gif of dragon on my forum.  I would like to either place it on the upper right hand corner of the forum page just above the top links or to the left of the top link icons.  Attach below is a copy of the gif I will be using.  The communities help on this would be appreciated.  Just for some background you need to be specific about what needs to be edited since I'm a noob at all this.  Thanks very much.

Also how do I change color of bottom text for mybb copyright stuff, I want to show people that I'm using mybb which is a great product (Best I think).

forum at http://www.nwntor.com
Your MyBB Copyright needs to be fully visible before we offer support. Just use <font color="white"> or something

"Powered By MyBB
Copyright © 2002-2006 MyBB Group"
go to admin cp, select templates and then expand the relavant one, then expand or open footer and put this:

<p align=centre><font color="white">Powered By MyBB<br>
Copyright © 2002-2006 MyBB Group</font></p>
<div style="position: absolute; width: 100px; height: 100px; z-index: 1; left: 9px; top: 17px" id="layer1">
<img src="path to image" alt="alt">
</div> 
Tabo Wrote:go to admin cp, select templates and then expand the relavant one, then expand or open footer and put this:

<p align=centre><font color="white">Powered By MyBB<br>
Copyright © 2002-2006 MyBB Group</font></p>
<div style="position: absolute; width: 100px; height: 100px; z-index: 1; left: 9px; top: 17px" id="layer1">
<img src="path to image" alt="alt">
</div> 


Made the changes, thks really appreciate the help.  If you go to my forums it shows up now but I keep getting a little box now in the upper left hand corner , not sure what to do about that.  

This is  aimed at the community, might there be a chance to add this to the default template so to make it easier for noobs like me to change the color on the copy right stuff , when they make background color changes?
In ACP -> Templates -> Modify / Delete -> *Template Set* -> header

Find:
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>

Replace with:
<div class="logo" style="float: left;"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div><div style="float: right;"><img src="path/to/image" alt="Alt Text Here" /></div><br style="clear: both;" />

Remember to change 'path/to/image'. Smile