Happening now | Office Hours: Customizing Your Theme With Moeed | Ask your questions now!

Re: How do I make Shopify Secure Icon float at the bottom right corner of home page / all pages

Solved

How do I make Shopify Secure Icon float at the bottom right corner of home page / all pages

airfilterhub
Tourist
9 0 1

I want to make the "Shopify Secure" icon float at the bottom right corner of the home page or every page, without using a 3rd party app. How would I code this? The code for the icon is below, just need to make it float in the bottom right corner with coding if it's even possible. Thanks!

 

<a
href="https://www.shopify.com/security/pci-compliant?utm_medium=shop&utm_source=secure"
title="This online store is secured by Shopify"
target="_blank"
rel="nofollow"
>
<img
src="https://cdn.shopify.com/s/images/badges/shopify-secure-badge-white.svg"
alt="Shopify secure badge"
>
</a>

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2139 616 529

This is an accepted solution.

Hey @airfilterhub,

 

You can try this and see if it works, if not paste the link to your store and let me see what I can do. 

 

<a
  href="https://www.shopify.com/security/pci-compliant?utm_medium=shop&utm_source=secure"
  title="This online store is secured by Shopify"
  target="_blank"
  rel="nofollow"
  style="position: fixed; bottom: 20px; right: 20px; z-index: 99;"
>
  <img
  src="https://cdn.shopify.com/s/images/badges/shopify-secure-badge-white.svg"
  alt="Shopify secure badge"
  >
</a>

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 2 (2)

ThePrimeWeb
Shopify Partner
2139 616 529

This is an accepted solution.

Hey @airfilterhub,

 

You can try this and see if it works, if not paste the link to your store and let me see what I can do. 

 

<a
  href="https://www.shopify.com/security/pci-compliant?utm_medium=shop&utm_source=secure"
  title="This online store is secured by Shopify"
  target="_blank"
  rel="nofollow"
  style="position: fixed; bottom: 20px; right: 20px; z-index: 99;"
>
  <img
  src="https://cdn.shopify.com/s/images/badges/shopify-secure-badge-white.svg"
  alt="Shopify secure badge"
  >
</a>

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
airfilterhub
Tourist
9 0 1

Thank you, that worked (I pasted the code at the bottom of theme.liquid for anyone reading in the future....) and it shows up on all pages