Quote:
Originally Posted by soletrader
Thanks for the reply. My mistake, I didnt make the template changes. Thank you for the nice hack. How would one go about changing the font size?
|
Go to your admin cp, then:
Plugin System -> Plugin Manager -> LP Threads (global_start)
Find
Code:
$lthreads.="<tr><td class='$classkpt'>› <a title='$vbphrase[lpthreadpostd]$lthreadlast[postusername] | $vbphrase[lpthreadpostr]$lthreadlast[lastposter] | $vbphrase[lpthreadreply]$lthreadlast[replycount] | $vbphrase[lpthreadview]$lthreadlast[views] | $vbphrase[lpthreadattach]$lthreadlast[attach]' href='showthread.php?t=$lthreadlast[threadid]'>$lthreadlast[title]</a></td></tr>";
Change whity this codes:
Code:
$lthreads.="<tr><td class='$classkpt'><font size='1'>› <a title='$vbphrase[lpthreadpostd]$lthreadlast[postusername] | $vbphrase[lpthreadpostr]$lthreadlast[lastposter] | $vbphrase[lpthreadreply]$lthreadlast[replycount] | $vbphrase[lpthreadview]$lthreadlast[views] | $vbphrase[lpthreadattach]$lthreadlast[attach]' href='showthread.php?t=$lthreadlast[threadid]'>$lthreadlast[title]</a></font></td></tr>";
Find:
Code:
$pthreads.="<tr><td class='$classpkpt'>› <a title='$vbphrase[lpthreadpostd]$pthreadlast[postusername] | $vbphrase[lpthreadpostr]$pthreadlast[lastposter] | $vbphrase[lpthreadreply]$pthreadlast[replycount] | $vbphrase[lpthreadview]$pthreadlast[views] | $vbphrase[lpthreadattach]$pthreadlast[attach]' href='showthread.php?t=$pthreadlast[threadid]'>$pthreadlast[title]</a></td></tr>";
Change with this codes
Code:
$pthreads.="<tr><td class='$classpkpt'><font size='1'>› <a title='$vbphrase[lpthreadpostd]$pthreadlast[postusername] | $vbphrase[lpthreadpostr]$pthreadlast[lastposter] | $vbphrase[lpthreadreply]$pthreadlast[replycount] | $vbphrase[lpthreadview]$pthreadlast[views] | $vbphrase[lpthreadattach]$pthreadlast[attach]' href='showthread.php?t=$pthreadlast[threadid]'>$pthreadlast[title]</a></font></td></tr>";
Find:
Code:
$rthreads.="<tr><td class='$classrkpt'>› <a title='$vbphrase[lpthreadpostd]$rthreadlast[postusername] | $vbphrase[lpthreadpostr]$rthreadlast[lastposter] | $vbphrase[lpthreadreply]$rthreadlast[replycount] | $vbphrase[lpthreadview]$rthreadlast[views] | $vbphrase[lpthreadattach]$rthreadlast[attach]' href='showthread.php?t=$rthreadlast[threadid]'>$rthreadlast[title]</a></td></tr>";
Change this codes:
Code:
$rthreads.="<tr><td class='$classrkpt'><font size='1'>› <a title='$vbphrase[lpthreadpostd]$rthreadlast[postusername] | $vbphrase[lpthreadpostr]$rthreadlast[lastposter] | $vbphrase[lpthreadreply]$rthreadlast[replycount] | $vbphrase[lpthreadview]$rthreadlast[views] | $vbphrase[lpthreadattach]$rthreadlast[attach]' href='showthread.php?t=$rthreadlast[threadid]'>$rthreadlast[title]</a></font></td></tr>";
Or,if you want to change font sizes, edit this code: