[SNIPPET] Color unread forum titles and topic titles

Mixed forum with phpBB code snippets
Guides and styles

[SNIPPET] Color unread forum titles and topic titles

Post by Stoker »

Color unread forum titles and topic titles

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;
}
and if you want to include lastsubject on forum index:

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;
}
Last edited by Stoker on 23 Jun 2025, 06:58, edited 3 times in total.
Reason: -

[SNIPPET] Color unread forum titles and topic titles

Post by Stoker »

Updated to include global_unread, announce_unread and sticky_unread