Log in

View Full Version : different logo for different forum


lottidah
03-05-2011, 04:34 PM
I found this thread (http://www.vbulletin.com/forum/showthread.php/239757-Show-a-specific-header-banner-or-logo-in-various-forums) that explains how to display a unique logo for different forums.

I don't understand how to apply it to my situation. I have logo1 that displays on the forum display page and the thread display page for all forums. I want to change it to logo2 for just forum #16. When the other forums are displayed, the previous logo should remain. I don't understand how to customize the code in that thread to fit this situation.

Can you please assist me? Thank you.

kh99
03-05-2011, 05:02 PM
I think you'd just want

<if condition="$foruminfo[forumid] == 16">
// code for logo 2
<else />
// code for logo 1
</if>

lottidah
03-06-2011, 11:47 AM
I think you'd just want

<if condition="$foruminfo[forumid] == 16">
// code for logo 2
<else />
// code for logo 1
</if>

Thank you! That's just what I needed. Works perfectly.