Be sure to save that template code to a text file and try this:
Code:
<if condition="$show['member'] AND $notifications_total">
<!-- notifications menu -->
<div class="vbmenu_popup" id="notifications_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 menu -->
</if>
$ad_location[ad_navbar_below]
<!-- breadcrumb -->
<div id="navbar-row">
<if condition="is_array($navbits)">
<div class="navbar navbar-top"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a> $navbits[breadcrumb]
» <strong>$navbits[lastelement]</strong></div>
<else />
<div class="navbar navbar-top"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></div>
</if>
</div>
<!-- / breadcrumb -->
See if that works. The problem is the skin has been modified to be in all div tags. Usually for anything under vb4 the skin is laid out in a table format. So there maybe a conflict somewhere within the css if the code I gave you does not work. you would need to look at your css and make changes to the navbar-row, or navbar navbar-top portion of the css code. You can find this code by opening your style in the admincp and clicking on the "go" button beside the style name. Scroll to the bottom and there is a box at the very bottom that will probably hold your custom css code.