PDA

View Full Version : Showing Forum Description in Title Tag


Neutral Singh
02-18-2009, 06:25 AM
In forumhome_forumbit_level1_post template:

I am trying to add title="$forum[description]" like in the following code. but title is not showing up when i hover the mouse over the link. Why? How this forum description be shown in the title tag. Please guide.

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

private_ale
02-18-2009, 07:32 AM
Um forumhome_forumbit_level1_post is for the category bars. if you want it for forums like under the categories then go to forumhome_forumbit_level2_post.

the best thing to do would be to put the title="$forum[description]" in the td tag.
<td class="alt1Active" align="$stylevar[left]" title="$forum[description]" id="f$forum[forumid]">so you would get the same affect as how the thread previews are.

--------------- Added 18 Feb 2009 at 09:36 ---------------

Wait, for it to work in forumhome_forumbit_level1_nopost
Replace:

<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">with:

<td class="tcat" title="$forum[description]" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">

Neutral Singh
02-19-2009, 09:58 AM
Na its not showing up!!