PDA

View Full Version : Forum with seperate tab areas like vb.org


reddyink
12-11-2007, 11:03 PM
In vbulletin.org when we go to articles tab, everything is customized for article such as "Submit new article". Then go to mod tabs, everything says says mods "submit new mod" etc.

I did seperate the tabs with forum =inactive and brought under tabs and now looking to customize the areas like vb.org articles, mods, styles etc

Please see the image below.

Many thanks for the help!

Opserty
12-12-2007, 05:35 PM
You could use a <if> condition in the forumdisplay template for the New Thread image source.

<img src="blue/style/newthread<if condition="$foruminfo['forumid'] == X">_spec</if>.gif" alt="Post New thread" />
In above case if you are in forum X it would use the newthread_spec.gif image and if you are not you it would use the newthread.gif image. The above code is just an example.