Subforum Icons on Index
When you have subforums and some of those subforums have new posts, subSilver 2 doesn't show you which subforums have it, unlike proSilver. This tutorial shows how to add those small status icons to subSilver 2:


1. Images
Copy images icon_post_target.gif and icon_post_target_unread.gif from styles/subsilver2/imageset/ to styles/subsilver2/theme/images/2. Code
In css file add this code:Code:
- .subforum.read {
- background: url(images/icon_post_target.gif) center left no-repeat;
- padding-left: 12px;
- }
- .subforum.unread {
- background: url(images/icon_post_target_unread.gif) center left no-repeat;
- padding-left: 12px;
- }
That's all.