تفضل هذا كود ايقونات تنبيهات الأعضاء كامل
(الرسائل الخاصة - رسائل الزوار - طلبات الصداقة - تقيمات جديدة - مواضيعك الخاصة)
CODE
<!-- Start_alert_icons_PBBoard -->
{if {$_CONF['member_permission']}}
<style>
.alert_icons {
float: right;
position: absolute;
margin-right: 0px;
top: 0px;
}
.alert_icons ul {
float:right;
list-style: none;
padding-right: 0px;
}
.alert_icons li {
float:right;
list-style: none;
padding-right: 7px;
}
.alert_icons li a {
display: inline-block;
font-size: 30px;
line-height: 100px;
width: 25px;
height: 25px;
border-radius: 50%;
text-align: center;
vertical-align: bottom;
color: #A3B3C5;
margin-right:5px;
}
.alert_icons li a:hover {
color:#818181;
}
.notifications {
position: relative;
background-color: #FF6193;
-moz-border-radius: 7px;
border-radius: 7px;
color: white;
width: 14px;
height: 14px;
font-size: 10px;
text-align: center;
line-height: 14px;
bottom: 4px;
right: 20px;
padding-right: 1px;
padding-left: 1px;
}
</style>
<div class="alert_icons">
<ul>
{if {$_CONF['info_row']['pm_feature']}}
{if {$_CONF['rows']['group_info']['use_pm']} == 1}
<li>
{if {$pm_num}}
<a rel="nofollow" title="رسائل خاصة" href="index.php?page=pm_list&list=1&folder=inbox">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa-envelope"></span></a>
<div title="رسائل خاصه جديدة" class="notifications">{$pm_num}</div>
{else}
<a rel="nofollow" title="رسائل خاصة" href="index.php?page=pm_list&list=1&folder=inbox">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa-envelope"></span></a>
{/if}
</li>
{/if}
{/if}
{if {$visitor_message_Numrs} > 0}
<li>
<a rel="nofollow" title="رسائل زوار" href="index.php?page=profile&show=1&id={$_CONF['rows']['member_row']['id']}">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa-comments"></span></a>
<div title="رسائل زوار" class="notifications">{$visitor_message_Numrs}</div>
</li>
{else}
<li>
<a rel="nofollow" title="رسائل زوار" href="index.php?page=profile&show=1&id={$_CONF['rows']['member_row']['id']}">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa-comments"></span></a>
</li>
{/if}
{if {$friends_num} > 0}
<li>
<a rel="nofollow" title="طلبات صداقه" href="index.php?page=usercp&options=1&friends=1&main=1">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa-user-secret"></span></a>
<div title="طلبات صداقه" class="notifications">{$friends_num}</div>
</li>
{else}
<li>
<a rel="nofollow" title="طلبات صداقه" href="index.php?page=usercp&options=1&friends=1&main=1">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa fa-group"></span></a>
</li>
{/if}
{if {$ReputationNum} > 0}
<li>
<a rel="nofollow" title="{$lang['reputation_unread']}" href="index.php?page=usercp&options=1&reputation=1&main=1">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa-camera"></span></a>
<div title="{$lang['reputation_unread']}" class="notifications">{$ReputationNum}</div>
</li>
{else}
<li>
<a rel="nofollow" title="{$lang['reputation_unread']}" href="index.php?page=usercp&options=1&reputation=1&main=1">
<span style="color:#92A1CE; margin-top:-13px;" class="fa fa-camera"></span></a>
</li>
{/if}
<li>
<a rel="nofollow" title="{$lang['Your_Subjects']}" href="index.php?page=usercp&options=1&subject=1&main=1">
<span style="color:#92A1CE; margin-left:-10px; margin-top:6px;" class="fa fa-file-text"></span></a>
</li>
</ul>
</div>
{/if}
<!-- End_alert_icons_PBBoard -->