Quote:
Originally Posted by gothicuser
That shouldn't happen, doing the template edit the original 'title=""':
PHP Code:
<div class="threadinfo" title="{vb:raw thread.preview}">
is replaced by the edit:
PHP Code:
<div class="threadinfo">
so hiding the original tip.
|
Nope..That is not the issue. I commented out the original Title as you can see
Here is the code I have now in my "threadbit"
Code:
<!-- <div class="threadinfo" title="{vb:raw thread.preview}"> -->
<vb:if condition="$vboptions['jqt_threadbits_tooltip_on']">
<div class="threadinfo">
<div class="jqt_threadbit_tooltip_trigger2" title="<table class="threadbit_tooltip">
<tr>
<td class="avatar_blok">
<img src="{vb:raw thread.avatarurl}" border="0"style="max-width:80px;min-width:60px; max-height:90px;" />
</td>
<td class="user_detail">
<p class="borderbottom"><i>Preview</i></p>
<p class="details2">{vb:raw thread.preview}</p>
<h5>Started by: {vb:raw thread.postusername}, {vb:raw thread.lastpostdate} {vb:raw thread.lastposttime}</h5>
</td>
</tr>
</table>">
<vb:else />
<div class="threadinfo" title="{vb:raw thread.preview}">
</vb:if>