Hi,
To make changes to the your are here and the div… open this file
templates>jaopal>index.php
find this section
<!-- PATHWAY -->
<div id="ja-pathway" class="wrap">
<div class="main">
<div class="inner clearfix">
<div class="ja-pathway-text">
<strong>You are here:</strong><jdoc:include type="module" name="breadcrumbs" />
</div>
<?php if ($this->countModules('user4')) { ?>
<div id="ja-search">
<jdoc:include type="modules" name="user4" style="raw" />
</div>
<?php } ?>
</div>
</div>
</div>
<!-- //PATHWAY -->
If you do not want the breadcrumbs and search then you can completely remove this section or you can remove what you want from the above section.
With regards making the bar smaller > open this file > templates>jaopal>template.css
find this section
/* breadcrumbs */
#ja-pathway {
color: #555555;
}
#ja-pathway .inner {
background: #CCCCCC;
border-top: 1px solid #AAAAAA;
border-bottom: 1px solid #AAAAAA;
margin: 15px 5px 0;
padding: 7px 0 0;
height: 28px;
position: relative;
}
this line > height: 28px; sets the height > you can change that to what ever value you want.