Centralised logo with repeat on either side.
Okay then. If assuming you have nothing else extra in your header, you will be looking to end up with something like this:
Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td class="logofluid"> </td>
<td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td class="logofluid"> </td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open
$_phpinclude_output
$ad_location[ad_header_end]
And add this to additional css:
HTML Code:
.logofluid { background: #COLOURCODE url(IMAGELOCATION.gif repeat-x; width: 50%; }
Hope this makes sense, if not, reply here and send me a PM to notify me that you have replied.
Logo on the left and repeating image on the right.
I have not tested this code so let me know if it doesn't work:
Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td class="logofluid"> </td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open
$_phpinclude_output
$ad_location[ad_header_end]
And add this to additional css:
Code:
.logofluid { background: #COLOURCODE url(IMAGELOCATION.gif repeat-x; width: 100%; }
I think this should do it, if not, I'll try making one on localhost.