This is what I use to change the icons:
HTML Code:
.forum-list-container .forum-item .cell-forum .icon {
background: url("path/here/image_old.png") no-repeat;
height: 20px;
width: 20px;
}
.forum-list-container .forum-item.new .cell-forum .icon {
background: url("path/here/image_new.png") no-repeat;
}
[/QUOTE]
This works great! Thanks Lynne!:up:
Is there a way to modify it to work for the topic status icons too?
This seems to be working. Proud of myself! (patting self on back)
/*Changing topic status icons - Lynne's forum icon code modified*/
.topic-list-container .topic-item.read .cell-topic .vb-icon-topic-status {
background: url("path/here/image_old.png") no-repeat;
height: 20px;
width: 20px;
}
.topic-list-container .topic-item .cell-topic .vb-icon-topic-status {
background: url("path/here/image_new.png") no-repeat;
}