here u go...
New Posts Button
Upload(attached below)
------
newposts.gif -> <forumroot>/images/buttons/newposts.gif
Go to
------
AdminCP -> Styles & Templates -> Search in templates -> SHOWTHREAD
FIND (second occurrence)
------------------------
Code:
<if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a>
AFTER ADD
---------
Code:
<a href="search.php?do=getnew"><img src="$stylevar[imgdir_button]/newposts.gif" alt="New Posts" border="0" /></a>
Sticky background color change
Simple template mod, updated from my 3.5.x mod.
ACP -> Styles & Templates -> Style Manager -> Edit Templates -> Threadbit
Find:
Code:
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
Replace with:
Code:
<!-- Sticky Color -->
<if condition="$thread['sticky'] == 1">
<td class="stickybg" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
</if>
<!-- /Sticky Color -->
Then create the CSS class:
ACP -> Styles & Templates -> Style Manager -> Style Name -> Main CSS -> Additional CSS Definitions
Add the following:
Code:
.stickybg
{
background-color: #333333;
}
Change the red code to your new color.
Screenshot:
Private Message Notification!
This Mod Gives The Members A Clear Notification, Telling That They Got A Private Message!
Goto The Navbar Template, Add This To The End!
Code:
<!-- PM Notification -->
<if condition="$bbuserinfo[pmunread]">
<table border="10" align="center">
<tr>
<td><a href="private.php"><div style="text-decoration:none;"> <font size=5 color=red><b>You currently have $bbuserinfo[pmunread] Private Message!</font></b><if condition="$bbuserinfo[pmunread] >= 2">s</if> <font size=5 color=white><b><br><center>Click To View!</center></font></B></div></a></td>
</tr>
</table>
<br />
</if>
<!-- / PM Notification -->
You Can Edit This Code, To Change The Words, Color, Size & Place!
Welcome headers - Improve community registration rates
ALREADY POSTED
HERE