Buy me a coffee

Social Icons over Reel Images

To add Social Icons over Reel Images, like this

Social Icons Over Reel Images 1 Min

#1. Use this code to Page Header Injection (If your site doesn’t support Injection, you can add it via Code Block)

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
  figure {position: relative;}
figcaption.gallery-caption.gallery-caption-reel {
    opacity: 1 !important;
    visibility: visible !important;
    position:absolute;
       bottom: 20px;
    right: 20px;
    left: unset !important;
    top: unset !important;
    margin: 0 !important;
    height: auto !important;
}
  figcaption.gallery-caption.gallery-caption-reel {
    text-align: right;
    color: #fff;
    max-width: 100% !important;
}
figcaption.gallery-caption.gallery-caption-reel * {
    color: #fff;
    font-size: 30px;
}
figcaption.gallery-caption.gallery-caption-reel p {
    display: flex;
    flex-direction: column;
}
</style>

Social Icons Over Reel Images 2 Min

#2. Hover Reel > Click EDIT SECTION

Social Icons Over Reel Images 3 Min

#3. Enable Captions

Social Icons Over Reel Images 4 Min

#4. Hover Reel > Click EDIT GALLERY

Social Icons Over Reel Images 5 Min

#5. Use this syntax into Description Field

<a href="http://m.me/tuanphan">
  <i class="fab fa-facebook-messenger"></i>
  </a>
 <a href="https://wa.me/0123456789">
  <i class="fab fa-whatsapp"></i>
  </a>
 <a href="[email protected]">
  <i class="fas fa-at"></i>
  </a>

Social Icons Over Reel Images 6 Min

#6. Explain
Each icon syntax will include 2 parts

  • Icon tag:
<i class="fab fa-facebook-messenger"></i>

You can find icon syntax at: https://fontawesome.com/search?o=r&m=free
Just click on each free icon > Copy this

Social Icons Over Reel Images 7 Min

  • Link tag:
<a href="enter url here">icon tag</a>.

For example:

<a href="https://wa.me/0123456789">
  <i class="fab fa-whatsapp"></i>
  </a>

#7. To make icons appear on hover only, use this new code

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
  figure {position: relative;}
figcaption.gallery-caption.gallery-caption-reel {
    opacity: 0 !important;
    visibility: visible !important;
    position:absolute;
       bottom: 20px;
    right: 20px;
    left: unset !important;
    top: unset !important;
    margin: 0 !important;
    height: auto !important;
}
    figure:hover figcaption.gallery-caption.gallery-caption-reel {opacity: 1 !important;}
  figcaption.gallery-caption.gallery-caption-reel {
    text-align: right;
    color: #fff;
    max-width: 100% !important;
}
figcaption.gallery-caption.gallery-caption-reel * {
    color: #fff;
    font-size: 30px;
}
figcaption.gallery-caption.gallery-caption-reel p {
    display: flex;
    flex-direction: column;
}
</style>

#8. To change icon size/color, change these

Social Icons Over Reel Images 8 Min

#9. To adjust space between icons – right/bottom of reel image, you can adjust this

Social Icons Over Reel Images 9 Min