UBB.Dev
Posted By: gonon Logo - 12/06/2009 7:32 PM
hi I have question how do i add logo to my Forum ,thanks a lot
Posted By: sirdude Re: Logo - 12/06/2009 7:46 PM
Control Panel --> General --> HTML Includes --> Default header

put in something like:

Code
<div class="header_logo">
<a href="http://yoursite.com/ubbthreads/ubbthreads.php?ubb=cfrm">
<img src="http://yoursite.com/ubbthreads/logos/yourlogo.png" />
</a>
</div>

puts a clickable logo in your header..

you can style the .header_logo class in the extra CSS to make it look however you want (optional) wink

Posted By: gonon Re: Logo - 12/06/2009 8:36 PM
that was quick thank you very much sir
Posted By: gonon Re: Logo - 12/06/2009 8:48 PM
just one more question if you be kind how do i center the logo? thank you
Posted By: sirdude Re: Logo - 12/07/2009 12:06 AM
you could quick and dirty it by adding
tags around the outer div...

HTML
<center><div class="header_logo">
<a href="http://yoursite.com/ubbthreads/ubbthreads.php?ubb=cfrm">
<img src="http://yoursite.com/ubbthreads/logos/yourlogo.png" />
</a>
</div></center>

or just css it (.header_logo class), which is the elegant way wink
Posted By: gonon Re: Logo - 12/07/2009 1:06 AM
big thanks much appreciated
© UBB.Developers