As the title says. Anyone figured out a way this can be done? I've searched the forum but haven't found any answers.
Solved! Go to the solution
Hello, @tompa
Welcome to the Shopify community!
and Thanks for your Good question.
Please share your site URL,
So I will check and provide a solution here.
sorry for late
yes, it can be done some custom code in header fils and this icon
Yes i'm sure it can, but how? I'd even be happy adding a search bar myself using the cusom html module on the Narrative theme, but would need someone to help me connect it with the right code. @KetanKumar
This is an accepted solution.
Ok so i wasn't able to add an icon like i wanted, but i was able to add a search bar to the header on the Narrative theme, which will do for now. I'll explain how i did it in case anyone else wants to add a search bar to the header on the Narrative theme as well.
1. Find the header.liquid file under the sections folder.
2. Then paste {% include 'search-bar' %} under the </header> tag.
<div class="site-header__section site-header__section--button">
<a href="{{ routes.cart_url }}" class="btn btn--clear btn--square btn--hover-scale site-header__cart ajax-cart__toggle" aria-expanded="false">
{%- assign icon = 'icon-header-' | append: section.settings.icon %}
{% include icon %}
<span class="icon__fallback-text">{{ 'general.header.view_cart' | t }}</span>
<span class="site-header__cart-bubble{% if cart.item_count > 0 %} site-header__cart-bubble--visible{% endif %}"></span>
</a>
</div>
</div>
{% include 'search-bar' %}
</header>
</div>
3. Voila
From there you'll have to fix a little with the padding and margins to fit your theme. I've done this:
.navigation__search {
position: relative;
max-width: 960px;
margin: 0 auto;
//margin-bottom: 20px;
border-radius: 10px;
padding: 10px 20px 20px 20px;
}
.input-group--underline {
border: 1px solid #000;
}
.input-group--underline {
position: relative;
display: flex;
width: 100%;
border-collapse: separate;
}
Cheers
great Thanks and update here.
User | Count |
---|---|
860 | |
113 | |
100 | |
98 | |
76 |