add button hover animation button go to Right or any where with custom css by jishaansinghal
add hover effect on Button on Squarespace 7.0 and 7.1 by jishaansinghal. This code uses a CSS editor and works with Squarespace 7.1 and 7.0 templates. In this video, I'm showing you how to add a hover effect on the Button on the Squarespace website with custom Code! You can change the movement value which you wanted. This code uses CSS editor Copy and pastes the code below into the editor box. -------------------------------------------------------------------------------------------------------- //add Move when you hover on Every button Button on Squarespace 7.0 and 7.1// .sqs-block-button .sqs-block-button-element{ -webkit-transition: ease-in-out 0.5s !important; -moz-transition: ease-in-out 0.5s !important; -ms-transition: ease-in-out 0.5s !important; -o-transition: ease-in-out 0.5s !important; transition: ease-in-out 0.5s !important; } .sqs-block-button .sqs-block-button-element:hover { margin-left: 60px; -webkit-transition: eas...