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
#2. Edit the Image Block and add this URL:
- #text01
Make sure “Open link in New Tab” is disabled
#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
#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>
#5. Explain code