How do I move the 3 line logo to the left side

Hi @Ill_olo ,

Please go to sections > header.liquid file and change code line 58 → 151:

Code:


      {% if section.settings.align_logo == 'center' %}
        {%- assign logo_classes = 'medium-up--one-third medium-up--push-one-third logo-align--center' -%}
      {% else %}
        {%- assign logo_classes = 'medium-up--one-quarter logo-align--left' -%}
      {% endif %}
      
      

        

          {% unless linklists[section.settings.main_linklist] == blank %}
          
          {% endunless %}

          {% if shop.customer_accounts_enabled %}
          {% if customer %}
          
            {% include 'icon-login' %}
            {{ 'layout.customer.account' | t }}
          
          {% else %}
          
            {% include 'icon-login' %}
            {{ 'layout.customer.log_in' | t }}
          
          {% endif %}
          {% endif %}
        

      

      
        {% 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 %}
          

        {% endif %}
          {% if section.settings.logo %}
            {%- assign img_url = section.settings.logo | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
            
              {% capture logo_alt %}{{ section.settings.logo.alt | default: shop.name }}{% endcapture %}
              
              
            
          {% else %}
            {{ shop.name }}
          {% endif %}
        {% if request.page_type == 'index' %}
          

        {% else %}
          

        {% endif %}
      

      {% if section.settings.align_logo == 'left' %}
        
      {% endif %}

      
        

          

          
            {% include 'icon-cart' %}
            {{ 'layout.cart.title' | t }}
            

              {{ cart.item_count }}
              {{ 'layout.cart.items_count' | t: count: cart.item_count }}
            

          
        

      

    

Hope it helps!