|
Okay, my solution, which I am not sure if it is the correct way or not is as follows:
Open up page/html/header.phtml and catalog/navigation/top.phtml
page/html/header.phtml should look like this:
<div class="header-nav-container">
<div class="header-nav">
<?php echo $this->getChildHtml('topSearch') ?>
<?php echo $this->getChildHtml('topMenu') ?>
</div>
<?php echo $this->getChildHtml('topLeftLinks') ?>
</div>
catalog/navigation/top.phtml should look like this:
<h4 class="no-display"><?php echo $this->__('Category Navigation:') ?></h4>
<ul id="nav">
<?php foreach ($this->getStoreCategories() as $_category): ?>
<?php echo $this->drawItem($_category) ?>
<?php endforeach ?>
</ul>
You’ll need to add “position:relative” to .header-nav in boxes.css in order to real in the form though.
|