Buy me a coffee

Hover Image show Text

Demo: https://tuanphan-demo01.squarespace.com/hover-image-show-text1?noredirect

Password: abc

Suppose you have an Image Block and a Text block, and you want to hover over the image, the text block will appear.

#1. First, add an Image Block and a Text Block

Hover Image Show Text 02 Min

#2.  Edit the Image Block and add this URL:

  • #text01

Make sure “Open link in New Tab” is disabled

Hover Image Show Text 01 Min

#3. Install Squarespace ID Finder to find the ID of all Blocks

In my example, we will have:

  • Image Block: No need to find ID
  • Text Block: #block-yui_3_17_2_1_1714037628161_8028

Hover Image Show Text 03 Min

#4. Use this code to Code Injection – Footer (or Page Header Code Injection)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
  $(document).ready(function(){
  $('a[href="#text01"]').hover(function(){
   $("#block-yui_3_17_2_1_1714037628161_8028").addClass("show");
  }, function(){
   $("#block-yui_3_17_2_1_1714037628161_8028").removeClass("show");
  })
  });
</script>
<style>
#block-yui_3_17_2_1_1714037628161_8028 {
    display: none;
}
  .show {
      display: block !important;
  }
  .show {
      z-index: 999999 !important;
  }
</style>

Hover Image Show Text 04 Min

#5. Explain code

 

Hover Image Show Text 05 Min