[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 {
	color: #CC0000;
}

[class*="topic_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
Last edited by Stoker on 19 Apr 2025, 09:57, edited 1 time in total.
Reason: -