Hello gray,
You could move code for search-module-position to file mainnav.php, and adapt template.css, in this way:
Cut following code from header.php:
<?php if($this->countModules('search')) : ?>
<div id="ja-search">
<jdoc:include type="modules" name="search" />
</div>
<?php endif; ?>
In mainnav.php paste it beneath code for breadcrumb:
<div class="ja-breadcrums" style="">
<strong><?php echo JText::_('You are here')?></strong> <jdoc:include type="module" name="breadcrumbs" />
</div>
<!-- paste search module position here -->
<?php if($this->countModules('search')) : ?>
<div id="ja-search" style="">
<jdoc:include type="modules" name="search" />
</div>
<?php endif; ?>
<!-- end paste -->
<ul class="no-display">
<li><a href="<?php echo $this->getCurrentURL();?>#ja-content" title="<?php echo JText::_("Skip to content");?>"><?php echo JText::_("Skip to content");?></a></li>
</ul>
In template.css change rules for #ja-search and .ja-breadcrums:
#ja-search {
width:39%;
float: right;
margin-top: 0;
}
.ja-breadcrums {
float: left;
width: 58%;
margin-left: 10px;
margin-top: 2px;
text-transform: uppercase;
}
Good luck,
Micrantha