Please follow the steps below.
1. Open topiclist.html
2. Find <div class="topic-list-content--icon">
3. Replace with <div class="topic-list-content--icon<!-- IF topicrow.S_UNREAD_TOPIC --> has-unread-post<!-- ENDIF -->">
(Screenshot: http://prntscr.com/e7aysk)
4. Then add below css to custom.css
:
.topic-list-content--icon.has-unread-post {
position: relative;
}
.topic-list-content--icon.has-unread-post:before {
content: " ";
position: absolute;
top: -8px;
right: -8px;
width: 15px;
height: 15px;
background-color: #ff6c2c;
border: 3px solid #fff;
border-radius: 50%;
}
Best Regards,
ThemeLooks Support Team