beckyvan |
05-17-2010 02:43 PM |
Code for duplicate logo's
I posted once already, but it was wrong. This is what I need to do. I want to have my homepage have the default logo on the left, and a slide show on the right. In a few other forums, I want a DIFFERENT logo on the left, and a DIFFERENT logo on the right. Can I do this without creating multiple forums? My current code is:
PHP Code:
<!-- 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="<if condition="$foruminfo['forumid'] == 19">images/Logos/Brady-Bunch-Wallpaper.jpg<else />
<if condition="$foruminfo['forumid'] == 24">images/Logos/cartoon.jpg<else />
<if condition="$foruminfo['forumid'] == 7">images/Logos/beatleslogo.jpg<else />
$stylevar[titleimage]</if></if></if>" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td align="$stylevar[right]">
<div style="width:600px; text-align: center;"><embed type="application/x-shockwave-flash" wmode="transparent" src="http://w70.photobucket.com/pbwidget.swf?pbwurl=http%3A%2F%2Fw70.photobucket.com%2Falbums%2Fi117%2Fbeckyvan%2FFlashback%2Fe582901f.pbw" height="220" width="280"></a></div>
</td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open
$_phpinclude_output
The above code with the condition naming the forum ID takes care of the different logos on the left, but keeps the homepage slide show on the right. I want to replace that slideshow on these other 3 forums to a totally different logo. How do I accomplish this?
|