Beyondspace Posted January 8, 2021 Posted January 8, 2021 1 minute ago, vvc said: @bangank36you are a genius! it worked, thank you! I had to add !important; after the overflow-x: visible; Does this code mean that however many spacer blocks I have don't matter anymore? THANK YOU!!!! you site look great now vvc 1 BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox - PDF Lightbox popup - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> No-code customisations for Squarespace
MariaFY Posted February 21, 2021 Posted February 21, 2021 Hey there, I'm looking to create a split section with 1 side fixed and 1 side that scrolls as seen on this page: https://www.violahillstudio.com/work Is there any code snipped, or tutorial you guys know to recreate this layout? I'm using Brine! Beyondspace 1
sharine Posted March 21, 2021 Posted March 21, 2021 Hey, @bangank36! I just installed the code on my site and changed the section-id but the effect isn't working. Do you think I can get some assistance with this? Thanks!
Beyondspace Posted March 22, 2021 Posted March 22, 2021 7 hours ago, sharine said: Hey, @bangank36! I just installed the code on my site and changed the section-id but the effect isn't working. Do you think I can get some assistance with this? Thanks! what is your site url BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox - PDF Lightbox popup - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> No-code customisations for Squarespace
stapleshotz Posted April 9, 2021 Posted April 9, 2021 Hey @bangank36! I've been fiddling around with this for a while and some of your previous posts have already helped me greatly, but I'm having an odd problem I can't seem to figure out. https://mbmtest3.squarespace.com/ pw: middleborn Thanks to you, I've managed to get that menu section on the left to behave how I want, but I can't figure out how to get rid of that big yellow box where the section would normally be. I'd like the content below to be right beneath the header video. I'm guessing this problem has something to do with the fact that I'm making an entire section sticky, rather than just a column in a section, but I'm not sure. What's odd is when I set the menu section's position to "fixed" instead of "sticky", the content beneath that section behaves how I want. See below: Any ideas on how to handle this? This is all the custom code I'm using on this page: (Apologies for the mess) <style> @media screen and (min-width:641px){ #header { display: none; } .page-section:nth-child(2){ width:20vw; z-index: 9999; position: sticky !important; background-color: transparent !important; top: 0; } .page-section:nth-child(2) .section-background{ background: transparent !important; } /* Menu Logo Edits */ .page-section:nth-child(2) .image-block{ width: 15vw !important; max-width: 250px !important; text-align: center !important; } /* Menu Button Edits */ .page-section:nth-child(2) .sqs-block-button-container--center { text-align: left !important; padding-right: 3vw !important; } .page-section:nth-child(2) .sqs-block { padding-top: 3px !important; padding-bottom: 3px !important; } .page-section:nth-child(2) .sqs-block-button-element { padding-left: 5vw !important; padding-right: 5vw !important; } /* Menu Left Justify */ .page-section:nth-child(2) .content-wrapper { padding-left: 0vw !important; text-align: left !important; } /* content to the right */ .content-wrapper { justify-content: flex-end !important; } } @media screen and (max-width:640px){ section[data-section-id="606f7adc828e892e3eaa0bc7"] { display: none; } } </style> Beyondspace 1
Beyondspace Posted April 9, 2021 Posted April 9, 2021 12 minutes ago, stapleshotz said: Hey @bangank36! I've been fiddling around with this for a while and some of your previous posts have already helped me greatly, but I'm having an odd problem I can't seem to figure out. https://mbmtest3.squarespace.com/ pw: middleborn Thanks to you, I've managed to get that menu section on the left to behave how I want, but I can't figure out how to get rid of that big yellow box where the section would normally be. I'd like the content below to be right beneath the header video. I'm guessing this problem has something to do with the fact that I'm making an entire section sticky, rather than just a column in a section, but I'm not sure. What's odd is when I set the menu section's position to "fixed" instead of "sticky", the content beneath that section behaves how I want. See below: Any ideas on how to handle this? This is all the custom code I'm using on this page: (Apologies for the mess) <style> @media screen and (min-width:641px){ #header { display: none; } .page-section:nth-child(2){ width:20vw; z-index: 9999; position: sticky !important; background-color: transparent !important; top: 0; } .page-section:nth-child(2) .section-background{ background: transparent !important; } /* Menu Logo Edits */ .page-section:nth-child(2) .image-block{ width: 15vw !important; max-width: 250px !important; text-align: center !important; } /* Menu Button Edits */ .page-section:nth-child(2) .sqs-block-button-container--center { text-align: left !important; padding-right: 3vw !important; } .page-section:nth-child(2) .sqs-block { padding-top: 3px !important; padding-bottom: 3px !important; } .page-section:nth-child(2) .sqs-block-button-element { padding-left: 5vw !important; padding-right: 5vw !important; } /* Menu Left Justify */ .page-section:nth-child(2) .content-wrapper { padding-left: 0vw !important; text-align: left !important; } /* content to the right */ .content-wrapper { justify-content: flex-end !important; } } @media screen and (max-width:640px){ section[data-section-id="606f7adc828e892e3eaa0bc7"] { display: none; } } </style> may you try this @media screen and (min-width: 641px) { .page-section:nth-child(2) { min-height: inherit !important; position: sticky !important; top: 10vh; } .page-section:nth-child(2) .content-wrapper { padding-left: 0vw !important; text-align: left !important; position: absolute; top: 0; } } BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox - PDF Lightbox popup - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> No-code customisations for Squarespace
stapleshotz Posted April 9, 2021 Posted April 9, 2021 6 minutes ago, bangank36 said: may you try this @media screen and (min-width: 641px) { .page-section:nth-child(2) { min-height: inherit !important; position: sticky !important; top: 10vh; } .page-section:nth-child(2) .content-wrapper { padding-left: 0vw !important; text-align: left !important; position: absolute; top: 0; } } Haha wow, yeah that did the trick. It's perfect! Thank you so much! Beyondspace 1
casafloralia Posted May 19, 2021 Posted May 19, 2021 hey everyone, I'm trying to make the section with the title (green background) sticky to the left, while scrolling the section with the text (nude background) to the right. can anyone help? https://janetesilveira.squarespace.com/depoimentos-clb7 ps: 1234
sehar Posted May 20, 2021 Posted May 20, 2021 On 11/4/2020 at 11:57 AM, bangank36 said: This is also an interesting topic for me too! I actually made a plugin for my client site as Charlie Edmiston Paintings — 2020 — Charlie Edmiston Studio So for specific section I can suggest you do following to apply as hotfix, if you need a universal method let's pm me 1. Remove background of section, instead create a span-6 solumn and add the image block on the right of your text 2. Remove the margin and padding of section, make it 100% width 3. Use Css sticky to apply effect Output: http://beyondspace.tk/wp-content/uploads/2020/11/sticky.gif section[data-section-id="5ebdbd0ce45b605e7b5758b0"] .content-wrapper { padding: 0; margin: 0; max-width: unset; } section[data-section-id="5ebdbd0ce45b605e7b5758b0"] .content-wrapper .content { width: 100% !important; } /* Assume you got span-6 image column added*/ section[data-section-id="5ebdbd0ce45b605e7b5758b0"] .content-wrapper .content [data-type="page-section"] > .row .span-6:first-child { position: -webkit-sticky; position: sticky; top: calc(6vw + 29px); } /* I want to make sure image is shorter than content */ section[data-section-id="5ebdbd0ce45b605e7b5758b0"] .content-wrapper .content [data-type="page-section"] > .row .span-6:first-child .sqs-block-image-figure > div { padding-bottom: 50% !important; } section[data-section-id="5ebdbd0ce45b605e7b5758b0"] .content-wrapper .content [data-type="page-section"] > .row .span-6:first-child .sqs-block-image-figure img { height: auto !important; top: 50% !important; transform: translateY(-50%) !important; } Hi @bangank36, I was wondering if you could help me out with the split sticky section as well, i want to make something like https://www.breakthroughenergy.org/our-challenge/the-grand-challenges the sticky section here or like this https://habitat-tw.com.au/ I do not know where to start and how to split the sections, could you please help me out?
sehar Posted May 20, 2021 Posted May 20, 2021 Site URL: https://habitat-tw.com.au/ Hi! I need help with making sticky split sections in my squarespace website, something along the lines of what https://habitat-tw.com.au/ or the challenges section in this page https://www.breakthroughenergy.org/our-challenge/the-grand-challenges, where the two sections move synchronously. my squarespace website url is https://sepia-cinnamon-pcxj.squarespace.com/ and password is: candela I want to implement this feature on the last mile grand challenges page, which will have 4 "challenges" or blocks, meaning 8 blocks in all (2 by 4) thanks in advance!
casafloralia Posted May 20, 2021 Posted May 20, 2021 On 5/19/2021 at 6:09 PM, casafloralia said: hey everyone, I'm trying to make the section with the title (green background) sticky to the left, while scrolling the section with the text (nude background) to the right. can anyone help? https://janetesilveira.squarespace.com/depoimentos-clb7 ps: 1234 hey @tuanphan would you be able to help? 🙂
tuanphan Posted May 22, 2021 Posted May 22, 2021 Hi. Where is green background? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
casafloralia Posted May 22, 2021 Posted May 22, 2021 7 hours ago, tuanphan said: Hi. Where is green background? hi @tuanphan thanks for replying. the one with the title "Do ZERO ao CLB7" i'd like that one to be sticky to the left, while the other section with the text can scroll to the right.
Nick_SquareKicker Posted December 5, 2021 Posted December 5, 2021 @ecweb, @stapleshotz, @sehar, @HaleyWard Did you manage to get Sticky Split Sections to work? SquareKicker just released a tool that gives you the ability to achieve this with one click. Check out the video tutorial at the link below. https://squarekicker.com/letsmakethis/stickysplit If your just using SquareKicker for this single feature, you can use SK for one month as a one off and changes save forever. Hi, I'm Nick a Co-Founder at squarekicker.com. Take your Squarespace sites to the next level with SquareKicker's Templates and No-Code Design & Animation Extension. Break free from complex code and start building unique websites that you are proud to show your clients without ever having to write a single line of code. Pro Extension ● Template Store ● Inspiration ● Tutorials ● Resources
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment