Adding Image Or Logo In Footer


In this article:

(a) Introduction

(b) Get ready your image or logo URL

(c) Steps to add image or logo in footer


(a) Introduction

By adding footer image or logo such as company logo, awards, certifications or memberships, it helps build visitors trust in your web store. With a clickable image or logo, you can even direct them to the related pages.


(b) Get ready your image or logo URL 

1. Before you start, please make sure that you already have a URL link to your image or logo. If you do not have an existing URL link, you can create and obtain one by uploading the image or logo to your store storage. 


2. Go to Admin > Products > Add product > in 'Description' box, select 'Images' > Add image > Upload image > copy the 'Image link'.


(c) Steps to add image or logo in footer

1. Go to Admin > Themes > Edit Source


2. Go to layout > layout/theme.liquid


3. Search for {% include 'social-links' %} ( usually it will be at row 246 )


4. Below this line, paste code below (choose with or without link). Don't forget to insert your own page and image or logo URL link.

(i) With Link

( when visitors click on the image or logo, they will be directed to another page )


<a href="yourpageurl" target="_blank"><img style=“width: 100px;” src="yourimageurl"></a>

(ii) Without  Link

( unclickable image or logo only )


<img style="width: 100px;" src="yourimageurl"/>


5. If you would like the image or logo to be located at the right side, you may use the codes below instead.

(i) With Link


<a href="yourpageurl" target="_blank"><img style="width: 100px; margin-left: 100%;" src="yourimageurl"></a>

(ii) Without  Link


<img style="width: 100px; margin-left: 100%;"src="yourimageurl"/>



6. Save and done.


Tips:

  1. If you want to adjust the size of the logo, you may adjust the number in width: 100px. 

  2. If you want to adjust the position of the logo by redirect them to middle or not too side, then you may adjust the percentage number in margin-left= 100%. 




Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.