Colouring unread forum titles and topic titles is a missing phpBB feature.
You can get it by adding this to your css
Only tested on prosilver.
Code: Select all
/* Colour unread titles */
[class*="forum_unread"] a.forumtitle,
[class*="forum_unread_subforum"] a.forumtitle,
[class*="topic_unread"] a.topictitle,
[class*="global_unread"] a.topictitle,
[class*="announce_unread"] a.topictitle,
[class*="sticky_unread"] a.topictitle {
color: #CC0000;
}
Code: Select all
/* Colour unread titles */
[class*="forum_unread"] a.forumtitle,
[class*="forum_unread_subforum"] a.forumtitle,
[class*="forum_unread"] a.lastsubject,
[class*="forum_unread_subforum"] a.lastsubject,
[class*="topic_unread"] a.topictitle,
[class*="global_unread"] a.topictitle,
[class*="announce_unread"] a.topictitle,
[class*="sticky_unread"] a.topictitle {
color: #CC0000;
}
You can replace this
color: #CC0000;
with the color you prefer.Need a stylesheet for adding extra styling? No need to edit phpBB core!
You can use the Add CSS EXT
Older versions
Code: Select all
/*
* Colour unread titles
*/
[class*="forum_unread"] a.forumtitle,
[class*="forum_unread_subforum"] a.forumtitle {
color: #CC0000;
}
[class*="topic_unread"] a.topictitle {
color: #CC0000;
}