Banner help.

iDeSu

New Member
Hey, how do i remove the vBulletin banner on the top add replace it with my banner.? sorry i'm kinda new to all this locking forward to learn more here on these forum's.
 
Assuming that you want to change the default vBulletin logo, you can find it in \images\misc. The down and dirty way to change it is just replace it with your own image by renaming your image to "vbulletin3_logo_white.gif" but the more valuable way for you to learn the vBulletin system is to edit the header template and change the code to point to your image instead of the default one.

For example, this is the default code to display the vBulletin Logo:

HTML:
<td align="$stylevar[align=left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>

You would replace it with something like (adding your image to /images/misc folder):

HTML:
<td align="$stylevar[align=left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="images/misc/yourimage.gif" border="0" alt="$vboptions[bbtitle]" /></a></td>

If you maintain the same dimensions on your image it should work perfectly.
 
Back
Top