GarciaVisuals Posted February 17, 2021 Share Posted February 17, 2021 Site URL: https://upstatelandservices.squarespace.com/about-us The image hover code i have on this page is suppose to scale up within it's boundaries but it will only do that once I click "edit page" https://upstatelandservices.squarespace.com/about-us password: landscape Here is the code: .sqs-block-image img { transform: scale(1) !important; transition: all ease-in-out 1s !important; } .sqs-block-image:hover img { transform: scale(1.1) !important; transition: all ease-in-out 1s !important; } AJAX Loading has been and is currently offf Link to comment
derricksrandomviews Posted February 17, 2021 Share Posted February 17, 2021 Its working, the images are zooming in for me. Link to comment
GarciaVisuals Posted February 17, 2021 Author Share Posted February 17, 2021 (edited) This video explains my issue better. You'll see once I click edit the hover style changes to the way it is suppose to be. I've cleared my cache and I am seeing the same issue in firefox which I never use and has a completely cleared cache as well. CSS ISSUE.mp4 Edited February 17, 2021 by GarciaVisuals Link to comment
Solution tuanphan Posted February 19, 2021 Solution Share Posted February 19, 2021 Add this new code .sqs-block-image img { -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; transform: scale(1) !important; -webkit-transition: all ease-in-out 1s !important; -o-transition: all ease-in-out 1s !important; transition: all ease-in-out 1s !important; } .image-inset { overflow: hidden; } .sqs-block-image:hover img { -webkit-transform: scale(1.1) !important; -ms-transform: scale(1.1) !important; transform: scale(1.1) !important; -webkit-transition: all ease-in-out 1s !important; -o-transition: all ease-in-out 1s !important; transition: all ease-in-out 1s !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
GarciaVisuals Posted February 19, 2021 Author Share Posted February 19, 2021 14 hours ago, tuanphan said: Add this new code .sqs-block-image img { -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; transform: scale(1) !important; -webkit-transition: all ease-in-out 1s !important; -o-transition: all ease-in-out 1s !important; transition: all ease-in-out 1s !important; } .image-inset { overflow: hidden; } .sqs-block-image:hover img { -webkit-transform: scale(1.1) !important; -ms-transform: scale(1.1) !important; transform: scale(1.1) !important; -webkit-transition: all ease-in-out 1s !important; -o-transition: all ease-in-out 1s !important; transition: all ease-in-out 1s !important; } That worked! Thank you!! So the solution was to incorporate the browser support? Link to comment
tuanphan Posted February 22, 2021 Share Posted February 22, 2021 On 2/19/2021 at 11:51 PM, GarciaVisuals said: That worked! Thank you!! So the solution was to incorporate the browser support? no =))) You see this new code in above code .image-inset { overflow: hidden; } Also, I added some prefix for enture it works on all browsers/devices Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment