View Full Version : Beginner needs help with basic graphic ?
mm1334
04-22-2008, 08:24 PM
I apologize for posting such a simple question, but I am new to this and I do not know the programming languages for editing the look of vbulletin.
I cannot seem to change the graphics at the top of the default vbulletin page to my own site's info. If you recall, the forum is built by default with Vbulletin in the upper left hand corner - but I need to change that to my own logo. It seems like everything I try so far has created some other kind of problem.
Somebody please help a stupid newbie here with this problem.
Thanks!
legionofangels
04-26-2008, 02:02 PM
So you want to change the banner at the top of the page?
This is what a Test Style or Default code looks like for the Header in Admin CP > Styles & Templates > Style Manager > All Style Options > Common Templates > Header
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevar[left]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td align="$stylevar[right]">
</td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open
$_phpinclude_output
This is one we have a customized style on:
<!-- logo -->
<a name="top"></a>
<table border="0" width="958" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="http://legionofangels.net/banners/job960.jpg" border="0" alt="$vboptions[bbtitle]" /></a></td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open
$_phpinclude_output
You'll probably be fine with changing the part after img src = to whatever the url is of your banner, and change the alignment to whatever you want, left, right, or center. If it still looks strange you might need to change your table width, all are shown within the code above, I hope that helps.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.