PDA

View Full Version : Different header logo for Forum, Blog, Calendar, Whats New, etc.


rokslide
11-17-2011, 06:06 PM
Please help! I can't seem to find the answer to this anywhere?

I have several different setions, the Forum, the CMS Home, the Calendar and Whats New, etc. I would like to have a different header logo for each page. The only thing I can find is the Header Template, but it calls for the same image for all sections. Any ideas? I am new to this and really appreciate any help. Any code to help with this?

Thanks in advance

Simon Lloyd
11-19-2011, 04:46 PM
Try this in the header template, replace your<td align="$stylevar[left]"><a href="http://www.mysite.com/forum"><img src="http://www.mysite.com/forum/images/misc/mylogo.png" border="0" alt="" /></a>
With (cms would be the name of your cms script like content.php leave off the php!)

<if condition="THIS_SCRIPT == 'cms'">
<td align="$stylevar[left]"><a href="http://www.mysite.com/forum"><img src="http://www.mysite.com/forum/images/misc/myNEWlogo.png" border="0" alt="" /></a>
<if condition="THIS_SCRIPT == 'calendar'">
<td align="$stylevar[left]"><a href="http://www.mysite.com/forum"><img src="http://www.mysite.com/forum/images/misc/myOTHERlogo.png" border="0" alt="" /></a>
<else />
<td align="$stylevar[left]"><a href="http://www.mysite.com/forum"><img src="http://www.mysite.com/forum/images/misc/mylogo.png" border="0" alt="" /></a>
</if>