I have a conditionals question. I need to use two else statements within one area like this:
Code:
<vb:if condition="$GLOBALS['forumid'] == 2"><h1>This is my header</h1></vb:else>
<vb:if condition="$GLOBALS['forumid'] == 3"><h1>This is my other possible header</h1></vb:else><h1>{vb:rawphrase post_new_thread}</h1></vb:if>
Obviously its wrong, but how do I only have a particular title in only one forum and another different title in just one other forum and then have the standard vb headers for all the rest using conditionals? Or am I'm doomed to have to figure out a plugin for this little feat? Any help would be great, thanks.