Topic: padding
im using the oxygen skin, and am trying to figure out how to pad the topics in a forum
like on this site
http://www.rumourwhores.com/board/viewforum.php?id=10
anyone help me out?
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → padding
im using the oxygen skin, and am trying to figure out how to pad the topics in a forum
like on this site
http://www.rumourwhores.com/board/viewforum.php?id=10
anyone help me out?
On that site they have moded the last post colum and added a break after the link. To do the same just..
open viewforum.php
find [line:148]:
$last_post = '<a href="viewtopic.php?pid='.$cur_topic['last_post_id'].'#p'.$cur_topic['last_post_id'].'">'.format_time($cur_topic['last_post']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['last_poster']).'</span>';
replace with:
$last_post = '<a href="viewtopic.php?pid='.$cur_topic['last_post_id'].'#p'.$cur_topic['last_post_id'].'">'.format_time($cur_topic['last_post']).'</a><br/> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['last_poster']).'</span>';
And en index.php
find[line:111]:
$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.format_time($cur_forum['last_post']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'</span>';
replace with:
$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.format_time($cur_forum['last_post']).'</a><br/> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']).'</span>';
hope i didnt miss something
PunBB Forums → PunBB 1.2 troubleshooting → padding
Powered by PunBB, supported by Informer Technologies, Inc.