Hello J0k3R^!
As you're using PunBB, this can be done very easily. If you want to add "New" after the forum title, you can do this:
1. Edit the "index_box" template. Find
- Code:
<h{catrow.forumrow.LEVEL} class="hierarchy"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumtitle">{catrow.forumrow.FORUM_NAME}</a></h{catrow.forumrow.LEVEL}>
and replace it with
- Code:
<h{catrow.forumrow.LEVEL} class="hierarchy"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumtitle">{catrow.forumrow.FORUM_NAME}</a> <img title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></h{catrow.forumrow.LEVEL}>
. Then publish the template.
2. In Pics management > Advanced > Icons for the forums, put this image (https://2img.net/i/fa/empty.gif) for everything else except "Category - New" and "Forum - New". For "Category - New" and "Forum - New", put this image (https://i.servimg.com/u/f58/17/19/90/23/empty10.gif).
3. In Javascript codes management, simply add this script:
- Code:
$(document).ready(function()
{$('img[src="http://i58.servimg.com/u/f58/17/19/90/23/empty10.gif"]').replaceWith('<span class="newpostprefix">New</span>');});
4. Customize the css of the class ".newpostprefix" as you want.
That should be it. :)