There is a problem, $show['notifications'] is checked twice, so if it is false the else part will never be shown.
Code:
You currently have
<!-- notifications box -->
<if condition="$show['member'] AND $notifications_total">
<!-- notifications menu -->
<div class="vbmenu_popup" id="notifbox_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead" colspan="2">$vbphrase[your_notifications]</td></tr>
$notifications_menubits
</table>
</div>
<!-- / notifications box -->
</if>
<!-- notification box -->
<if condition="$show['notifications']">
<if condition="$show['member']">
<if condition="$show['notifications']">
<span id="notifbox"><blink><font color="orange"><strong>$notifications_total</strong></font><a href="usercp.php$session[sessionurl_q]"></a> </blink></span> Notification Messages.
<else/>
<strong><blink><a href="usercp.php$session[sessionurl_q]"><font color="orange">$notifications_total</font></a></blink></strong> Notification Messages.
<if condition="$show['popups']">
<script type="text/javascript"> vBmenu.register("notifbox"); </script>
</if>
</if>
</if>
</if>
<!-- / notification box -->
maybe what you want is something like this:
Code:
<!-- notifications box -->
<if condition="$show['member'] AND $notifications_total">
<!-- notifications menu -->
<div class="vbmenu_popup" id="notifbox_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead" colspan="2">$vbphrase[your_notifications]</td></tr>
$notifications_menubits
</table>
</div>
<!-- / notifications box -->
</if>
<!-- notification box -->
<if condition="$show['member']>
<if condition="$show['notifications']">
<span id="notifbox"><blink><font color="orange"><strong>$notifications_total</strong></font><a href="usercp.php$session[sessionurl_q]"></a> </blink></span> Notification Messages.
<if condition="$show['popups']">
<script type="text/javascript"> vBmenu.register("notifbox"); </script>
</if>
<else/>
<strong><blink><a href="usercp.php$session[sessionurl_q]"><font color="orange">$notifications_total</font></a></blink></strong> Notification Messages.
</if>
</if>
<!-- / notification box -->