Log in

View Full Version : Header issue


sybarites
07-10-2006, 03:58 PM
How would I change my header to go to my actual site instead of the forums?
This is what I have at the moment.


<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevarcenter]"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td align="$stylevar[right]">
&nbsp;
</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

Thanks

a simple fa?ade
07-10-2006, 04:31 PM
Copy and paste this to replace the above:

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevarcenter]"><a href="http://www.YOURSITE.com"><img src="$stylevar[titleimage]" border="0" alt="YOURSITE.com" /></a></td>
<td align="$stylevar[right]">
&nbsp;
</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

Replace 'www.YOURSITE.com' with whatever your main site's URL is. :)

sybarites
07-10-2006, 07:05 PM
But it leads me to www.yoursite.com/yoursite.com, yes I did replace Yoursite.

Thanks alot

a simple fa?ade
07-11-2006, 02:35 PM
you have to include "http://" in the url. :)

So, http://www.yoursite.com/

sybarites
07-11-2006, 05:25 PM
Thanks it worked