hav_ery Posted July 31 Share Posted July 31 Hello everyone, I'm desperately trying to make my homepage's gallery grid react to hover with grayscale https://havery.studio/ It's a simple Gallery Block I'm trying to replicate what i did it for my portfolio page : https://havery.studio/portfolio I used this code for the Portfolio Hover Gray. I don't have a clue how to do it for my homepage, thank you ! 🙂 //IMAGE HOVER// .grid-item .grid-image{filter:grayscale(1)} .grid-item:hover .grid-image{filter:grayscale(0)} Link to comment
Solution Ziggy Posted July 31 Solution Share Posted July 31 Try this Custom CSS: .sqs-gallery-design-grid-slide { filter: grayscale(0); transition:ease-in-out 300ms; &:hover { filter: grayscale(1); } } hav_ery 1 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) ✨ Spark Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
hav_ery Posted July 31 Author Share Posted July 31 Thank you so much dear ! It worked ! 🤩 Have a nice day ! 😄 Ziggy 1 Link to comment
Ziggy Posted July 31 Share Posted July 31 Just now, hav_ery said: Thank you so much dear ! It worked ! 🤩 Have a nice day ! 😄 No problem, you too! hav_ery 1 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) ✨ Spark Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
hav_ery Posted July 31 Author Share Posted July 31 (edited) Quick question : It also greyed out my instagram posts (a little below), can i revert this ? @Ziggy :') Edited July 31 by hav_ery Maximum Reach to the Squarespace WebMagician himself Link to comment
Ziggy Posted July 31 Share Posted July 31 Yes we, can target just that block with this addition to the code: #block-yui_3_17_2_1_1690790463207_390758 { .sqs-gallery-design-grid-slide { filter: grayscale(0); transition:ease-in-out 300ms; &:hover { filter: grayscale(1); } } } hav_ery and tuanphan 1 1 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) ✨ Spark Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
hav_ery Posted July 31 Author Share Posted July 31 The WebMagician nailed it, once again! Thank you @Ziggy ! 😄 Ziggy 1 Link to comment
rachy1105 Posted November 6 Share Posted November 6 my home page has a gallery using images from the portfolio pages. I'm looking for a code that will put a dark slightly purple filet over the images until you hover over them and then they would go full color. Any ideas? Link to comment
tuanphan Posted November 10 Share Posted November 10 On 11/7/2023 at 5:24 AM, rachy1105 said: my home page has a gallery using images from the portfolio pages. I'm looking for a code that will put a dark slightly purple filet over the images until you hover over them and then they would go full color. Any ideas? Can you share link to page? We can check easier 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
rachy1105 Posted November 10 Share Posted November 10 15 hours ago, tuanphan said: Can you share link to page? We can check easier https://www.themediumagency.com/portfolio 15 hours ago, tuanphan said: Can you share link to page? We can check easier I used this on the home page and it worked but want the same effect on the portfolio page ! .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper { background-color: #7879a0; } .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper img { opacity: .50; transition: all .4s; } .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper img:hover { opacity: 1; } .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper { background-color: #7879a0; border-radius: 125px; /* play around with this number */ border: 3px solid #000; } any help is greatly appreciated! Thanks Link to comment
tuanphan Posted November 18 Share Posted November 18 On 11/11/2023 at 5:39 AM, rachy1105 said: https://www.themediumagency.com/portfolio I used this on the home page and it worked but want the same effect on the portfolio page ! .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper { background-color: #7879a0; } .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper img { opacity: .50; transition: all .4s; } .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper img:hover { opacity: 1; } .fe-block-yui_3_17_2_1_1694104930278_8932 .summary-thumbnail.img-wrapper { background-color: #7879a0; border-radius: 125px; /* play around with this number */ border: 3px solid #000; } any help is greatly appreciated! Thanks Use this code for Portfolio Page body#collection-654e9b252b202929ce6283c5 { .summary-thumbnail.img-wrapper { background-color: #7879a0; } .summary-thumbnail.img-wrapper img { opacity: .50; transition: all .4s; } .summary-thumbnail.img-wrapper img:hover { opacity: 1; } .summary-thumbnail.img-wrapper { background-color: #7879a0; border-radius: 125px; /* play around with this number */ border: 3px solid #000; }} 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