XF 1.5 Forum Icons

Hello so @Mike pointed us into the right direction so we contacted the Developer of the style and they gave us the solution to this issue.

Go to discussion_list.css within the Zinc Style Templates

Find:
Code:
.discussionListItem .iconKey span
        {
            @property "dicussionListIcon";
            margin-left: 5px;
            text-indent: -10000em;
            float: right;
            background: transparent;
            width: 16px;
            height: 16px;
            @property "/dicussionListIcon";
        }

Replace it with:
Code:
.discussionListItem .iconKey span
        {
            @property "dicussionListIcon";
            margin-left: 5px;
            text-indent: -10000em;
            float: right;
            background: transparent url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat 10000px 0;
            width: 16px;
            height: 16px;
            @property "/dicussionListIcon";
        }
 
Top Bottom