Thanks again. I think I've almost wrapped my head around it.
So I edit the forumbit template where the $description variable is and add the banner code after that.
I just need to figure out how to write the conditional to show a different image for each forumid.
I tried:
Code:
<if condition="$forum[forumid] = '17'">
But that still showed the banner after every forum description instead of next to just forumid 17's forum description.
--------------- Added [DATE]1331687984[/DATE] at [TIME]1331687984[/TIME] ---------------
Hmmm, from the looks of this post from Lynne
https://vborg.vbsupport.ru/showpost....1&postcount=15
It doesn't look like a forumid conditional won't work on forumhome?
--------------- Added [DATE]1331689441[/DATE] at [TIME]1331689441[/TIME] ---------------
My bad, I found my error. I thought != meant "does not equal" and = meant "equal".
Turns out it should have been == which actually means "equal"
Code:
<if condition="$forum[forumid] == '17'">
That works on forumhome for only showing a banner on a specific forum category
Thanks again @Simon