The biggest amount of work is deciding on, and creating new icons. That's not my forte.
When we have new icons, I can easily change them out (or Endelyon can, if preferred

)
For reference, we've got the following icons set in the CSS of this site (which is copied over from before my time):
Code: Select all
.forum_link .row-item-link {
background-image: url("images/forum_link.gif");
}
.forum_unread .row-item-link, .forum_unread_subforum .row-item-link {
background-image: url("images/forum_unread.gif");
}
.forum_unread_locked {
background-image: url("images/forum_unread_locked.gif");
}
.forum_read .row-item-link, .forum_read_subforum .row-item-link {
background-image: url("images/forum_read.gif");
}
.forum_read_locked .row-item-link {
background-image: url("images/forum_locked.gif");
}
.global_read {
background-image: url("images/announce_read.gif");
}
.global_read_mine {
background-image: url("images/announce_read_mine.gif");
}
.global_read_locked {
background-image: url("images/announce_read_locked.gif");
}
.global_read_locked_mine {
background-image: url("images/announce_read_locked_mine.gif");
}
.global_unread {
background-image: url("images/announce_unread.gif");
}
.global_unread_mine {
background-image: url("images/announce_unread_mine.gif");
}
.global_unread_locked {
background-image: url("images/announce_unread_locked.gif");
}
.global_unread_locked_mine {
background-image: url("images/announce_unread_locked_mine.gif");
}
.announce_read {
background-image: url("images/announce_read.gif");
}
.announce_read_mine {
background-image: url("images/announce_read_mine.gif");
}
.announce_read_locked {
background-image: url("images/announce_read_locked.gif");
}
.announce_read_locked_mine {
background-image: url("images/announce_read_locked_mine.gif");
}
.announce_unread {
background-image: url("images/announce_unread.gif");
}
.announce_unread_mine {
background-image: url("images/announce_unread_mine.gif");
}
.announce_unread_locked {
background-image: url("images/announce_unread_locked.gif");
}
.announce_unread_locked_mine {
background-image: url("images/announce_unread_locked_mine.gif");
}
.sticky_read {
background-image: url("images/sticky_read.gif");
}
.sticky_read_mine {
background-image: url("images/sticky_read_mine.gif");
}
.sticky_read_locked {
background-image: url("images/sticky_read_locked.gif");
}
.sticky_read_locked_mine {
background-image: url("images/sticky_read_locked_mine.gif");
}
.sticky_unread {
background-image: url("images/sticky_unread.gif");
}
.sticky_unread_mine {
background-image: url("images/sticky_unread_mine.gif");
}
.sticky_unread_locked {
background-image: url("images/sticky_unread_locked.gif");
}
.sticky_unread_locked_mine {
background-image: url("images/sticky_unread_locked_mine.gif");
}
.topic_moved {
background-image: url("images/topic_moved.gif");
}
.pm_read, .topic_read {
background-image: url("images/topic_read.gif");
}
.topic_read_mine {
background-image: url("images/topic_read_mine.gif");
}
.topic_read_hot {
background-image: url("images/topic_read_hot.gif");
}
.topic_read_hot_mine {
background-image: url("images/topic_read_hot_mine.gif");
}
.topic_read_locked {
background-image: url("images/topic_read_locked.gif");
}
.topic_read_locked_mine {
background-image: url("images/topic_read_locked_mine.gif");
}
.pm_unread, .topic_unread {
background-image: url("images/topic_unread.gif");
}
.topic_unread_mine {
background-image: url("images/topic_unread_mine.gif");
}
.topic_unread_hot {
background-image: url("images/topic_unread_hot.gif");
}
.topic_unread_hot_mine {
background-image: url("images/topic_unread_hot_mine.gif");
}
.topic_unread_locked {
background-image: url("images/topic_unread_locked.gif");
}
.topic_unread_locked_mine {
background-image: url("images/topic_unread_locked_mine.gif");
}
I was already looking a bit at options, and was looking at something like this, where we can alter a parchment type image to suit our needs.
In this example, I just placed an exclamation mark over the parchment, and we could work with something like that.
But as indicated above, there are just a lot of different options to think of. I don't mind using similar icons for some options (if, for example we don't care much about "hot topics"), but it's still quite a bit to think of.