Switching positions of icons (narrative Theme)

{% if section.settings.enable_transparent and request.page_type == ‘index’ %}

html:not(.supports-no-js) body:not(.navigation-open) .site-header--transparent:not(.site-header--fixed) .burger-icon { background-color: {{ section.settings.transparent_text_color }}; } html:not(.supports-no-js) body:not(.navigation-open) .site-header--transparent:not(.site-header--fixed) .site-header__cart .icon, html:not(.supports-no-js) body:not(.navigation-open) .site-header--transparent:not(.site-header--fixed) .site-header__bag .icon { fill: {{ section.settings.transparent_text_color }}; } html:not(.supports-no-js) body:not(.navigation-open) .site-header--transparent:not(.site-header--fixed) a.site-header__logo { color: {{ section.settings.transparent_text_color }}; } html:not(.supports-no-js) body:not(.navigation-open) .site-header--transparent:not(.site-header--fixed) .site-header__navigation::after, html:not(.supports-no-js) body:not(.navigation-open) .site-header--transparent:not(.site-header--fixed) .site-header__cart::after { border-color: {{ section.settings.transparent_text_color }}; }

{% endif %}

{% if section.settings.show_announcement %} {% if section.settings.home_page_only == false or request.page_type == 'index' %} .announcement-bar { background-color: {{ section.settings.announcement_color_bg }}; }

.announcement-bar–link:hover {
{% assign brightness = section.settings.announcement_color_bg | color_brightness %}

{% if brightness <= 192 %}
{% assign lightenAmount = 255 | minus: brightness | divided_by: 255 | times: 16 %}
background-color: {{ section.settings.announcement_color_bg | color_lighten: lightenAmount }};
{% else %}
{% assign darkenAmount = 255 | divided_by: brightness | times: 8 %}
background-color: {{ section.settings.announcement_color_bg | color_darken: darkenAmount }};
{% endif %}
}

.announcement-bar__message,
.announcement-bar__close {
color: {{ section.settings.announcement_color_text }};
}

{% if section.settings.announcement_link == blank %}

{% else %} {% endif %}

{% endif %}
{% endif %}

{{ 'general.header.menu' | t }}
    {% for link in linklists[section.settings.primary_navigation].links%} {% assign child_list_handle = link.title | handleize %} {% if link.links != blank %}
  • {{ link.title }} {{ 'general.navigation.toggle_sublinks' | t: link_title: link.title }} {% include 'icon-arrow-down' %}
      {% for childlink in link.links %}
    • {% if childlink.links != blank %} {{ childlink.title }} {{ 'general.navigation.toggle_sublinks' | t: link_title: childlink.title }} {% include 'icon-arrow-down' %}
      {% else %} {{ childlink.title | escape }} {% endif %}
    • {% endfor %}
  • {% else %}
  • {{ link.title }}
  • {% endif %} {% endfor %}

{% if section.settings.show_social_icons %}

{% include 'social-links', disableTab: true, largeIcons: true %}
{% endif %}

{% include ‘search-bar’, animate: true, disableTab: true %}

{% comment %} Use the uploaded logo from theme settings if enabled. Site name gets precedence with `h1` tag on homepage, div on other pages. {% endcomment %} {% if request.page_type == 'index' %}

{% else %}

{% else %}
{% endif %}