diff options
author | Matt Friedman <maf675@gmail.com> | 2012-07-23 17:08:40 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2012-07-23 17:08:40 -0700 |
commit | eeb7b1bac31a623cae3a025c5f0f59a417b3b9b8 (patch) | |
tree | f7ee96eced61dd8196cac3b204698fccdd287a4b /phpBB/styles/subsilver2 | |
parent | efbc02acf30e1a98db9b7123610c593fe8fa6832 (diff) | |
download | forums-eeb7b1bac31a623cae3a025c5f0f59a417b3b9b8.tar forums-eeb7b1bac31a623cae3a025c5f0f59a417b3b9b8.tar.gz forums-eeb7b1bac31a623cae3a025c5f0f59a417b3b9b8.tar.bz2 forums-eeb7b1bac31a623cae3a025c5f0f59a417b3b9b8.tar.xz forums-eeb7b1bac31a623cae3a025c5f0f59a417b3b9b8.zip |
[ticket/11025] Make last topic titles in forum list Bold
This small style tweak will make the truncated last topic titles
shown in the forum list BOLD for better visual impact.
PHPBB3-11025
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r-- | phpBB/styles/subsilver2/template/forumlist_body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/forumlist_body.html b/phpBB/styles/subsilver2/template/forumlist_body.html index b9a1102df0..95ed94070f 100644 --- a/phpBB/styles/subsilver2/template/forumlist_body.html +++ b/phpBB/styles/subsilver2/template/forumlist_body.html @@ -61,7 +61,7 @@ <td class="row2" align="center" nowrap="nowrap"> <!-- IF forumrow.LAST_POST_TIME --> <!-- IF forumrow.S_DISPLAY_SUBJECT --> - <p class="topicdetails"><a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a></p> + <p class="topicdetails"><a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}"><b>{forumrow.LAST_POST_SUBJECT_TRUNCATED}</b></a></p> <!-- ENDIF --> <p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}" class="imageset">{UNAPPROVED_IMG}</a> <!-- ENDIF -->{forumrow.LAST_POST_TIME}</p> <p class="topicdetails">{forumrow.LAST_POSTER_FULL} |