I'd like to have the social networks at the top of the header too.- DAWN THEME -

Hello shopify community!

I hope you can help me. :crossed_fingers:

I would like to put the social networks logos also at the top of my site on the header? Is it possible?

I am sending you a screenshot to see where I would like to have them.

Website : https://litchi-bijoux.myshopify.com/
password : brivea

Thanks a lot!

Shirley

Hi @Shilitchi ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Find header.liquid file->At line 340: paste below code at the bottom of the file:


                {%- if settings.social_twitter_link != blank -%}
                - {%- render 'icon-twitter' -%}
                      {{ 'general.social.links.twitter' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_facebook_link != blank -%}
                - {%- render 'icon-facebook' -%}
                      {{ 'general.social.links.facebook' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_pinterest_link != blank -%}
                - {%- render 'icon-pinterest' -%}
                      {{ 'general.social.links.pinterest' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_instagram_link != blank -%}
                - {%- render 'icon-instagram' -%}
                      {{ 'general.social.links.instagram' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_tiktok_link != blank -%}
                - {%- render 'icon-tiktok' -%}
                      {{ 'general.social.links.tiktok' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_tumblr_link != blank -%}
                - {%- render 'icon-tumblr' -%}
                      {{ 'general.social.links.tumblr' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_snapchat_link != blank -%}
                - {%- render 'icon-snapchat' -%}
                      {{ 'general.social.links.snapchat' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_youtube_link != blank -%}
                - {%- render 'icon-youtube' -%}
                      {{ 'general.social.links.youtube' | t }}
                  
                

                {%- endif -%}
                {%- if settings.social_vimeo_link != blank -%}
                - {%- render 'icon-vimeo' -%}
                      {{ 'general.social.links.vimeo' | t }}
                  
                
                {%- endif -%}
              

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

2 Likes

THis helped me as well, thank you so much

1 Like

It works, thank you very much!

1 Like