Quote:
Originally Posted by Tony G
It's possible and not that hard either, just have to put the similar code (from this mod) into the forumdisplay templates.
|
The only problem being that if you still want the cell to direct you to the appropriate thread once clicked, it renders the AJAX feature of being able to edit the thread title rather useless..
Quote:
Originally Posted by Xplorer4x4
There are two codes, and where? I tried both codes seperatley and neither worked. Where do you add them in the forumdisplay template?
|
It's in the
[high]threadbit[/high] template..
Find:
HTML Code:
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]">
Replace it with:
HTML Code:
<td class="alt1Active" id="td_title_$thread[realthreadid]" title="$thread[preview]" onmouseover="this.className='alt2Active'" onmouseout="this.className='alt1Active'">
This takes in to consideration the problem that I mentioned above, and as such the onclick and style attributes have been removed..