smilebeard
-
Posts
12 -
Joined
-
Last visited
Reputation Activity
-
smilebeard reacted to tuanphan in Change a page section background on a hover of an Image
You mean similar this section?
-
smilebeard reacted to Collaborada in Google Won't Index My Site (Soft 404)
Yes it is worth a try 🙂
If this is the issue, please submit a report to Squarespace.Â
-
smilebeard reacted to Collaborada in Google Won't Index My Site (Soft 404)
Hi @smilebeard Regarding the soft 404, before jumping through too many hoops, check to see if the video is uploaded to Squarespace. If so, try another approach. See this other post for more details, note we've also seen it happen with video blocks not just background videos:Â
Â
-
smilebeard reacted to tuanphan in Change a page section background on a hover of an Image
Can you share link to your site & let me know which image - which section you want to apply? We can check/test code easier (I think this is possible with some CSS/script, but not sure will have a nice transition).
-
smilebeard reacted to camerondaft in Background color change with scroll fall 2022 update
Sooo, what's the code used in the site reference given so that non-expert coders have a place to start from? Thanks for your help here I've been trying to figure this out for awhile now.Â
-
smilebeard reacted to Lesum in Animated type & delete typewriter text custom code
You can also try to add the code snippets I used:
1. First create a code block where you want to place the animation. Inside the code block, add the code below:
<h1> BECOME A <br> <span class="typewriter"></span><br> OF THIS REALM </h1> 2. Then on your Squarespace dashboard, go to Settings > Developers Tools > Code Injection
Add this code under Header:
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script> Then add this code under Footer:
<script>   var typed = new Typed('.typewriter', {    strings: ['Student', 'Master',  'Light'],    typeSpeed: 120,    loop: true   }); </script> Let me know if you face any issues. Thanks!Â