andrewwinkler
Hi,
You could add a new position into the 'mainnav' block or if you want to use 'head-search' position, you can load it into the 'mainnav' block.
For example, this snippet of code will show the modules assigned to 'head-search' position:
<?php if ($this->countModules('head-search')) : ?>
<!-- HEAD SEARCH -->
<div class="head-search <?php $this->_c('head-search') ?>">
<jdoc:include type="modules" name="<?php $this->_p('head-search') ?>" style="raw" />
</div>
<!-- //HEAD SEARCH -->
<?php endif ?>
You can see how it's declared in this file: /tpls/blocks/header.php
If you want to add into mainnav, you add to this file: /tpls/blocks/mainnav.php
Of course, you then will need to add customize style for it.
Regards