sshinkle Posted June 12 Share Posted June 12 Hi there - I'm essentially trying to mimic a portfolio page with a gallery regarding the overlay/text hover function but I can't figure out how to do that nicely. I have the main portfolio page laid out but I also need specific project category pages but I don't want to create another portfolio because I need them to be able to link to the same project page (I don't want two pages for the exact same project). TLDR; I want to recreate this page: https://www.tuckersadler.com/projects/civic to have this style (with the text/color overlay on the hover):https://www.tuckersadler.com/squarespaceprojectstest pw: tuckersquarespace but to create it as either a gallery or just image blocks since we aren't able to nest portfolios and I don't want duplicate project pages with different urls. I hope that wasn't too muddled. Any help would be so appreciated! Link to comment
Beyondspace Posted June 13 Share Posted June 13 1 hour ago, sshinkle said: Hi there - I'm essentially trying to mimic a portfolio page with a gallery regarding the overlay/text hover function but I can't figure out how to do that nicely. I have the main portfolio page laid out but I also need specific project category pages but I don't want to create another portfolio because I need them to be able to link to the same project page (I don't want two pages for the exact same project). TLDR; I want to recreate this page: https://www.tuckersadler.com/projects/civic to have this style (with the text/color overlay on the hover):https://www.tuckersadler.com/squarespaceprojectstest pw: tuckersquarespace but to create it as either a gallery or just image blocks since we aren't able to nest portfolios and I don't want duplicate project pages with different urls. I hope that wasn't too muddled. Any help would be so appreciated! So you want the /civic page to have the hover effect with the /squarespaceprojectstest right? BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox) 🗓️ Delivery Date Picker (Squarespace Date format) 💫 Animated Buttons (Referral URL) 🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations) 🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
sshinkle Posted June 13 Author Share Posted June 13 (edited) 17 minutes ago, Beyondspace said: So you want the /civic page to have the hover effect with the /squarespaceprojectstest right? That is correct. I want them to keep the style consistent because it's basically going to be a top level "All Projects" page and what is essentially a "filtered" Project Category page, but also top level. An individual project will appear on All Projects and on the Civic Projects page but I only want a single webpage for that project. But doing two portfolios (in order to achieve the same design style) forces me into having two webpages for the same project and I don't see how to get it to have that exact style without it being a portfolio. Edited June 13 by sshinkle Link to comment
tuanphan Posted June 14 Share Posted June 14 On 6/13/2023 at 8:00 AM, sshinkle said: That is correct. I want them to keep the style consistent because it's basically going to be a top level "All Projects" page and what is essentially a "filtered" Project Category page, but also top level. An individual project will appear on All Projects and on the Civic Projects page but I only want a single webpage for that project. But doing two portfolios (in order to achieve the same design style) forces me into having two webpages for the same project and I don't see how to get it to have that exact style without it being a portfolio. Can you drag Button Blocks to make its size = Image Size, then we can give code to achieve hover 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
sshinkle Posted June 14 Author Share Posted June 14 (edited) 13 hours ago, tuanphan said: Can you drag Button Blocks to make its size = Image Size, then we can give code to achieve hover easier Do you mean like this so that the button covers the entire image? I put up a new test version of that page in case you need it. These aren't created using a gallery - they're just normal image blocks so everything was created manually. Not sure if that makes a difference. Obviously the gallery would be easier for adding new projects as we go so everything doesn't have to be so manual, but I assume that might also make it fussy when it comes down responsive design and laying regular buttons over top of images in a gallery block. https://www.tuckersadler.com/projects/civic-squarespacetest pw: tuckersquarespace Edited June 14 by sshinkle Link to comment
Solution tuanphan Posted June 20 Solution Share Posted June 20 On 6/15/2023 at 6:00 AM, sshinkle said: Do you mean like this so that the button covers the entire image? I put up a new test version of that page in case you need it. These aren't created using a gallery - they're just normal image blocks so everything was created manually. Not sure if that makes a difference. Obviously the gallery would be easier for adding new projects as we go so everything doesn't have to be so manual, but I assume that might also make it fussy when it comes down responsive design and laying regular buttons over top of images in a gallery block. https://www.tuckersadler.com/projects/civic-squarespacetest pw: tuckersquarespace Yes. Try adding this to Design > Custom CSS (this code for first item) /* hide button */ .fe-block-1f76a031e45292b28925 { opacity: 0; transition: all 0.3s; } .fe-block-1f76a031e45292b28925:hover { opacity: 1; transition: all 0.3s; } 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
sshinkle Posted June 22 Author Share Posted June 22 On 6/19/2023 at 10:25 PM, tuanphan said: Yes. Try adding this to Design > Custom CSS (this code for first item) /* hide button */ .fe-block-1f76a031e45292b28925 { opacity: 0; transition: all 0.3s; } .fe-block-1f76a031e45292b28925:hover { opacity: 1; transition: all 0.3s; } Is there a way I can do this without adding it to the whole site? I need normal buttons in some places and it looks like this is going to apply it to the whole site. I tried adding it to the header code for that specific page but nothing happened. Link to comment
tuanphan Posted June 25 Share Posted June 25 On 6/23/2023 at 6:57 AM, sshinkle said: Is there a way I can do this without adding it to the whole site? I need normal buttons in some places and it looks like this is going to apply it to the whole site. I tried adding it to the header code for that specific page but nothing happened. Add to Custom CSS, not Header Code Also this code apply 1 item only, it won't apply whole site 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
sshinkle Posted June 29 Author Share Posted June 29 On 6/24/2023 at 9:03 PM, tuanphan said: Add to Custom CSS, not Header Code Also this code apply 1 item only, it won't apply whole site Oh I get it - that's the specific block it's addressing. Thank you so much! 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