Access a community of over 900,000 Shopify Merchants and Partners and engage in meaningful conversations with your peers.
Hello,
Can some tell me how to add a 2nd header section in Debut Theme? I want one for the logo and a separate one for the menu.
Thank you!!!
Hello There,
Do you want to achieve design which is related to the given design then kindly let me know I can assist you in achieving it.
Somewhat. I want one for the logo and one for the menu. I am hoping this will also make the header sections smaller as it is too big right now.
Thank you!
So, I can assist you in doing that by removing the search and the other sections and showing the logo on the top header and menus in the below header.
So, kindly let us know on it so that I can proceed further on it.
Late reply, but here's an idea for anyone else who wants a public (and free!) suggestion.
In case you still need this answer, or if other people are looking for this answer, I think you can add a second navigation menu this way.
This works within the Supply theme, but I believe this or something very similar will also work for the Debut theme.
Some caveats:
Here are the steps:
{% include 'extra-nav.liquid' %}
This code is telling the page to insert your new navigation bar right after the contents of your original navigation bar.
This should work with your code; it works with mine. You might make some minor changes if it doesn't. Now you have added a new navigation bar! Only thing is, it's empty. You must use HTML to create the content, and CSS to style the content.
I can give you a little example of how you might want to code your navigation.
Add this to extra-nav.liquid:
<div class="navbar">
<a href="(insert url 1 here)">Link 1</a>
<a href="(insert url 2 here)">Link 2</a>
<a href="(insert url 3 here)">Link 3</a>
</div>
You should now see a menu that looks pretty close to your original menu, only that it has these links in there instead.
There are a lot of ways you can customize this navigation bar. If you're looking to make a mega menu or do more, I recommend reading up on flexboxes and other CSS styling.
Hope this helps!