topics portal – little tweak for bullet style
-
Hi,
when just activated, font wasn’t nice because my template css style only defined css widget for list.So I tweaked the output string as follow:
$output_line = "<a href=" . '"' . $url . '"' . '>' . $pst . '</a>' . '(' . $ptopic_replies . ')' . ' in ' . $pforum_name . ' by ' . $puser_name . ' on ' . $fmt_date . '<br>'; echo $output_line;
by
$output_line = '<li>' . $puser_name . ' in '. "<a href=" . '"' . $url . '"' . '>' . $pst . '</a>' .' on ' . $fmt_date . '</li>'; echo '<ul id="recentposts">' . $output_line . '</ul>';
in phpbb_topics_portal_guts.php
Hope It can be useful for somebody else.
Cheers,
ps: could be interessant to create the same widget for recent Forum post.
- The topic ‘topics portal – little tweak for bullet style’ is closed to new replies.