How to make cat name a des on 1 line

mojopanel

New Member
By default you have to have the cat name & des like this
(this is just a example)
Cat name: Jam
Cat des: jam is food,

How do you make it so it would look like:
Jam - Jam is food?


can you help please, thanks

Mojopane
 
Open forumhome_forumbit_level2_post template find and delete:
HTML:
		<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>

now find:

HTML:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a>

at the end of that add:
HTML:
<if condition="$show['forumdescription']">&nbsp;-&nbsp;$forum[description]</if>
 
How do you do it for the cat it self. not like the sub forums, as you have your cat names as,

vBTEAM Underground
you get me know..
 
Open forumhome_forumbit_level1_nopost find:

HTML:
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>

Replace with:
HTML:
<if condition="$show['forumdescription']"><span class="smallfont">-&nbsp;$forum[description]</span></if>
 
Back
Top