Hi spencermjax !
You can keep it following way :
Open index.php file in template/ja_nerine folder , find following code section at about line 142 :
<?php if ($hasSubnav) {?>
<div id="ja-subnavwrap">
<div id="ja-subnav" class="clearfix">
<?php
if ($tmpTools->getParam(JA_TOOL_MENU) == 1) $jamenu->genMenu (1);
if ($tmpTools->getParam(JA_TOOL_MENU) == 4) $jamenu->genMenu (1);
?>
</div>
</div>
<?php } ?>
change to :
<?php //if ($hasSubnav) {?>
<div id="ja-subnavwrap">
<div id="ja-subnav" class="clearfix">
<?php
if ($tmpTools->getParam(JA_TOOL_MENU) == 1) $jamenu->genMenu (1);
if ($tmpTools->getParam(JA_TOOL_MENU) == 4) $jamenu->genMenu (1);
?>
</div>
</div>
<?php //} ?>
then open template.css file in templates/ja_nerine/css folder , find following code section at about line 879 :
#ja-subnavwrap {
background: #1F1F1F;
}
change to :
#ja-subnavwrap {
background: #1F1F1F;
height:30px;
}