Hi guys,
Sorry for bringing to life this old topic but I have a little problem and I don't know if you are also facing this.
First of all, the tinygirl's script is working for this problem, thank you a lot for that BUT
1. The categories stop showing after I move the menu location (see in pictures attached: the one with the logo, menu and search box in line, (before.jpg) when I put my mouse on "Shoes", it reveals the subcategories and in the other picture where the menu and search box appears under the logo (after.png), when I put my mouse on "Shoes" nothing happens).
2. After using tinygirl's script for bringing the menu under the logo, I got 2 search boxes (as you can see in the screenshots).
So my question is 'How can I move the menu under the logo but keep it full functional and also keeping only one search box (the one in line with the menu looks ok)?' (check the L.E. below to solve the search box problem)
Thanks a lot guys!
L.E. I removed the top search bar in my screenshot by removing the extra-code in tinygirl's solution. To keep only one search box in line with the menu text, under the logo, use the following code:
{block name='header_top'}
<div class="header-top">
<div class="container">
<div class="row">
<div class="col-md-8 hidden-sm-down" id="_desktop_logo">
{if $page.page_name == 'index'}
<h1>
<a href="{$urls.base_url}">
<img class="logo img-responsive" src="{$shop.logo}" alt="{$shop.name}">
</a>
</h1>
{else}
<a href="{$urls.base_url}">
<img class="logo img-responsive" src="{$shop.logo}" alt="{$shop.name}">
</a>
{/if}
<div class="col-md-12 col-sm-12 position-static">
{hook h='displayTop'}
<div class="clearfix"></div>
</div>
</div>
<div id="mobile_top_menu_wrapper" class="row hidden-md-up" style="display:none;">
<div class="js-top-menu mobile" id="_mobile_top_menu"></div>
<div class="js-top-menu-bottom">
<div id="_mobile_currency_selector"></div>
<div id="_mobile_language_selector"></div>
<div id="_mobile_contact_link"></div>
</div>
</div>
</div>
</div>
{/block}
Enjoy!