Quote:
Originally Posted by David1678
I am new to Vbulletin so hang with me for asking what is probably a stupid question.
I am using this template on my newly installed board. The template comes default with a 550x180 px logo space and it is centered in the middle.
I would like to have a banner that spreads all the way across the top of the template instead of just the small 550x180 area in the center. Is this possible? If so, what files do I need to edit?
Thanks for your help!
|
Hi David.
Yes, it's possible.
You must modify your header template.
Find (at the top):
HTML Code:
<table style="background-color: #FFFFFF;" cellpadding="0" height="200" cellspacing="0" border="0" width="$stylevar[outertablewidth]" align="center">
<tr>
<td width="35" height="200"><img src="images/orange_g/gradients/head_left.gif" border="0" /></td>
<td hegiht="200" style="background: url(images/orange_g/gradients/head_center.gif); repeat: repeat-x top left;" align="center"><a href="$vboptions[bburl]/$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td style="background: url(images/orange_g/gradients/head_center.gif); repeat: repeat-x top left;" align="$stylevar[right]" id="header_right_cell">
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else /> </if>
</td>
<td width="35" height="200"><img src="images/orange_g/gradients/head_right.gif" border="0" /></td>
</tr>
</table>
Replace by:
HTML Code:
<table style="background-color: #FFFFFF;" cellpadding="0" cellspacing="0" border="0" width="$stylevar[outertablewidth]" align="center">
<tr>
<td align="center"><a href="$vboptions[bburl]/$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
</tr>
</table>