ecom panda logo
Search
Close this search box.

How to Put Icon Images In Footer Shopify

In the world of online selling, having a website that looks good and is easy for customers to use is super important. Shopify is a top choice for people who want to run online stores, and it gives you lots of ways to make your store special. One cool trick is adding small pictures, called icon images, to the bottom part of your website (the footer). These little images can make your store look better and work better.

Imagine having icons like trust badges or logos at the bottom of your site where people can easily see and click on them. It’s a smart way to boost the appeal and functionality of your Shopify store. In this guide, we’ll teach you how to put icon images in footer shopify, so your online store can stand out and attract more customers.

how to put icon images in footer shopify

In this Article

Why Add a Logo Image Icon to the Footer?


Before we jump into the step-by-step guide, let’s first understand why it’s important to add those little icon images to the bottom of your Shopify website. These icons do a bunch of helpful things:

  1. Better User Experience: Icons are like little pictures that can show stuff like Facebook or Instagram links, phone numbers, or payment options. When visitors see these icons, it’s easier for them to figure out where to click and find what they want on your site.

  2. Show Off Your Brand: You can design your own special icons that match how your brand looks and what it stands for. This way, people remember your brand better and get a good feeling from it.

  3. More Trust: When you put icons for things like payment methods, security badges, and customer reviews in the footer, it tells people your store is trustworthy. They feel safer shopping with you.

  4. Looks Nice: Well-placed icons can make your website look fancier and more pro. It adds a bit of style and makes your site more attractive to visitors. So, adding these icon images is a pretty smart move for your Shopify store!

Adding an icon image to your Shopify footer not only personalizes your online store but also enhances brand recognition. It’s a simple yet effective way to make your store unique.

Adding a Logo to Your Shopify Footer

Step-by-Step Guide

1- Access Theme Editor

  • Go to your Shopify admin dashboard.
  • Navigate to Online Store > Themes.
  • Click Edit code next to the theme you’re using.

how to put icon images in footer shopify

 

2- Upload Logo

  • In the Assets folder, click Add a new asset.
  • Upload your image file.

how to put icon images in footer shopify

 

3- Locate Footer File

  • In the code editor, locate the file that contains the footer code, often named footer.liquid

how to put icon images in footer shopify

 

3- Insert HTML Code for Icon

  • Insert the HTML code for the icon image where you want it to appear in the footer.
  • Add the custom CSS class to your image HTML tag.
				
					<img decoding="async" src="{{ 'new logo light.png' | asset_url }}" alt="Your Icon">

				
			

how to put icon images in footer shopify

  • Replace 'new logo light.png' with the actual file name of your icon image.

4- Style Your Logo

  • Open your base.css file.
  • Add or modify CSS rules to style your logo. For instance, to resize the image, you can add:
				
					.footer-icon {
  width: 10%;
 }
				
			

how to put icon images in footer shopify

5- Optional: Make Logo Clickable

  • If you wish to make your icon image clickable, wrap it in an anchor tag (<a>):
				
					<a href="https://www.yourwebsite.com/target-page" target="_blank" rel="noopener">
  <img decoding="async" src="{{ 'new logo light.png' | asset_url }}" alt="Your Icon" class="footer-icon">
</a>

				
			

how to put icon images in footer shopify

Pro Tips

  • If you’re not comfortable with HTML and CSS, consider hiring a web developer to avoid breaking your site’s code.
  • You can also add additional text or links next to your logo for more context or navigation options.

6- Save, Preview, and Publish

  • Save all your changes.
  • Preview your site to ensure the icon is clickable and leads to the correct URL.
  • If everything is as you want it, publish the changes.

how to put icon images in footer shopify

How to create a footer with trust badges on your Shopify store?

How To Add shopify payment icons on Footer?

HTML Code

<div class=”payment-icons-footer-column payment-icons-footer-column-alignment”>
    <div class=”payment-icons-footer-margin”>
      <img src=”https://img.icons8.com/color/36/000000/visa.png” />
      <img src=”https://img.icons8.com/color/36/000000/mastercard.png” />
      <img src=”https://img.icons8.com/color/36/000000/paypal.png” />
      <img src=”https://img.icons8.com/color/36/000000/bank-card-back-side.png” />
      <img src=”https://img.icons8.com/color/36/000000/amex.png” />
      <img src=”https://img.icons8.com/color/36/000000/apple-pay.png” />
    </div>
  </div>

CSS Code

				
					/* Media Query for screens with a minimum width of 750px */
@media screen and (min-width: 750px) {
  .payment_icons_footer_margin {
    margin-top: 1.5rem;
  }
}

/* Styles for payment icon column */
.payment_icons_footer_column {
  width: 100%;
  align-items: flex-end;
}

/* Styles for aligning payment icons within the column */
.payment_icons_footer_column_alignment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Media Query for screens with a minimum width of 750px */
@media screen and (min-width: 750px) {
  /* Adjust padding and alignment for larger screens */
  .payment_icons_footer_column_alignment {
    padding-left: 0;
    padding-right: 0;
    align-items: flex-end;
  }
}

				
			

Frequently Asked Questions

How do I add an icon to my footer in Shopify?

To add an icon to your footer in Shopify, follow these steps:

  1. Log in to your Shopify admin.
  2. Navigate to Online Store > Themes.
  3. Click Edit code in the theme you want to edit.
  4. Locate the footer file (usually named footer.liquid).
  5. Insert the HTML code for the icon where you want it.
  6. Upload the icon image in Settings > Files.
  7. Save your changes.

How do I add an image to a link in a footer Shopify?

To add an image to a link in the footer of your Shopify store, follow these steps:

  1. In your footer file (e.g., footer.liquid), wrap the image in an anchor (<a>) tag.
  2. Set the href attribute of the anchor tag to the URL you want the image link to point to.
  3. Upload the image in Settings > Files if it's not already in your Shopify files.
  4. Save your changes to make the image a clickable link in the footer.

How do I add social media icons to the bottom of Shopify?

To add social media icons to the bottom of your Shopify store, follow these steps:

  1. In your footer file (e.g., footer.liquid), add image tags (<img>) for each social media icon.
  2. Set the src attribute of each <img> tag to the URL of the respective social media icon image.
  3. Wrap each <img> tag in an anchor (<a>) tag with the href attribute linking to your social media profiles.
  4. Style the icons as needed using CSS.
  5. Save your changes to display the social media icons in the footer.

How do I add a logo to my footer?

To add a logo to your footer in Shopify, follow these steps:

  1. In your footer file (e.g., footer.liquid), insert an image tag (<img>) for your logo.
  2. Set the src attribute of the <img> tag to the URL of your logo image.
  3. Style the logo using CSS if necessary.
  4. Save your changes to display the logo in the footer.

How do I customize my header and footer in Shopify?

To customize your header and footer in Shopify, follow these general steps:

  1. Log in to your Shopify admin.
  2. Navigate to Online Store > Themes.
  3. Click Customize on the theme you want to customize.
  4. Use the theme editor to make changes to your header and footer, including adding or modifying images, icons, and content.
  5. Save your changes when you're satisfied with the customization.
  6. Preview your store to see how the changes appear.
  7. Publish the changes to make them live on your store.

How do I add a logo to my footer in HTML?

To add a logo to your footer in HTML, follow these steps:

  1. In your HTML footer code, insert an image tag (<img>) for your logo.
  2. Set the src attribute of the <img> tag to the URL of your logo image.
  3. Style the logo using CSS if necessary.
  4. Save your changes to display the logo in the footer of your HTML document.

Share

About the author

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top