這個可以讓你用水平線來區分頂置主題跟普通主題.
In MessageIndex.template.php:
Find:
foreach ($context['topics'] as $topic)
{
After add:
if (isset($previousTopicClass) && strpos($previousTopicClass, 'sticky') !== false && !$topic['is_sticky'])
echo '
<tr class="titlebg" style="font-size: 1ex;">
<td colspan="2"></td>
<td colspan="7" height="8"></td>
</tr>';
$previousTopicClass = $topic['class'];
如果要改變水平線的高度可以改變 height 的值.