Jump to content

JayVanDyke

Circle Member
  • Posts

    361
  • Joined

  • Last visited

Reputation Activity

  1. Like
    JayVanDyke reacted to Patricija in Categorising page content by Tags   
    Last question, I promise @JayVanDyke 😄
    using the code prived is it possible to change the colour of the buttons?
  2. Like
    JayVanDyke got a reaction from kevin235690 in Categorising page content by Tags   
    That part is different. Remove everything between these two red marks including the comma and those curly brackets.

  3. Like
    JayVanDyke got a reaction from kevin235690 in Categorising page content by Tags   
    No that’s a css thing. There may be some code for that in the installation page though at the bottom, there’s a section for styling. It just depends on what buttons and whether he’s provided that code there. 
  4. Like
    JayVanDyke got a reaction from tuanphan in Categorising page content by Tags   
    You need to use a collection like a blog to hold the images and descriptions and then use universal filter to make the filtering part work like this I did here https://www.motheruntitled.com/experts
    In this site, the coaches are each a blog post and the popup is from the blog post content itself, the grid is the blog page but you can also do this with a summary block.

    Universal filter is here (affilliate link...) https://www.bergendesign.co/universal-filter
  5. Like
    JayVanDyke reacted to MikeM100 in Need help with reducing padding in image grid   
    It worked! Thanks so much Jay.
  6. Like
    JayVanDyke reacted to vcRBS in Adjust iFrame in Lightbox   
    @JayVanDyke preloading the popups did the trick. Thank you!
  7. Like
    JayVanDyke got a reaction from ArminB in Adjust iFrame in Lightbox   
    This isn't something you can adjust without having code level access to the page that's inside the frame. Is this your own page or from a third party service? Sometimes they have a little checkbox hiding in that final screen to copy your code to make it responsive, I know that airtable does that but without something like that you can't adjust the size of the frame based on the content inside it.
  8. Like
    JayVanDyke reacted to tuanphan in Unable to add gradient to buttons   
    brandboost
    password is incorrect
  9. Thanks
    JayVanDyke got a reaction from TomJuice in Is Slideshow: Reel Automation possible?   
    @TomJuice try this one from @WillMyers https://www.will-myers.com/articles/auto-scroll-for-carousel-banner-slideshows-for-auto-layout-sections-in-squarespace-71
  10. Thanks
    JayVanDyke got a reaction from kp_kick in Add popup to button in site header   
    There isn't a simple free version of this but one of the best plugins for popups is the Lightbox Anything plugin. This will do exactly what you need. I've installed this on hundreds of websites at this point. Works great!
    Affiliate link - https://www.bergendesign.co/lightboxanything
  11. Like
    JayVanDyke got a reaction from tuanphan in Prevent Site Title (and subtitle) Stacking on Mobile Screen   
    @TomKnowsNoCSS I would do this with some media queries at different breakpoints, most likely just 640px and under. Change your CSS to this and adjust those font sizes below. You can copy and paste the media query and change the size to something else 767px 500px 320px etc.
     
    a#site-title { &:after { content: "bespoke wedding stationery"; display: block; font-size: 1.3rem; font-family: 'Garamond'; letter-spacing: 3px; line-height: 1.3rem; } //change these font sizes or add different pixel widths as needed @media only screen and (max-width: 640px) { font-size: 20px !important; &:after { font-size: 1rem; } } }  
  12. Like
    JayVanDyke reacted to mbockmaster in Blinking, changing text animation?   
    Hello! I'm hoping to get some help creating a blink and change text effect, like the attached. I supposed that this could be achieved with an autoplay summary carousel, but there must be a better way?
    My site is: https://potato-goose-e48n.squarespace.com/
    pw: bockmaster
    (though I don't have much to see here yet) 
     
    Screen Recording 2024-01-10 at 1.57.54 PM.mov
  13. Like
    JayVanDyke reacted to El1z4b3th in Custom code needed to adjust section height   
    Thanks so much for your time @jaeveedee adjusting the height settings in Squarespace did the trick! I didn't realise you could go smaller than the small option, so good to know! 
  14. Thanks
    JayVanDyke got a reaction from Manst2002 in Trying to find code to fix issue with mobile   
    @GregR ah i think i missed one selector and i added a few other things to try to make sure it works. Try this.
    @media only screen and (max-width: 640px) { .collection-images .image-container img { left: 0 !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 100% !important; height: 100% !important; object-fit: contain; object-position: center; } }  
  15. Like
    JayVanDyke got a reaction from tuanphan in Trying to find code to fix issue with mobile   
    @GregR ah i think i missed one selector and i added a few other things to try to make sure it works. Try this.
    @media only screen and (max-width: 640px) { .collection-images .image-container img { left: 0 !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 100% !important; height: 100% !important; object-fit: contain; object-position: center; } }  
  16. Like
    JayVanDyke got a reaction from tuanphan in Custom code needed to adjust section height   
    @El1z4b3th i would try 3 things possibly to get the spacing right. 
    1. change the content alignment on the top section to the last one to align to the bottom and then the our core values section aligned to the top.
    2. try changing the section height of one or the other section to be smaller than the "small" option by clicking the three dots and using that scroller.
    3. Try with some css
    //trusted by thousands section section[data-section-id="6596bba3c7ad441ead1e0008"] { .content-wrapper { padding-bottom: 0 !important; //original value was 3.3vmax, adjust as needed } } //our core values section section[data-section-id="6580bc4e649f4453b77f4e3f"] { .content-wrapper { padding-top: 0 !important; //original value was 3.3vmax, adjust as needed } }  

  17. Like
    JayVanDyke reacted to GregR in Trying to find code to fix issue with mobile   
    @jaeveedee
     
    Nice!!! It totally worked. Thank you so much! I've been trying to fix this for months. I really really really appreciate it!
     
  18. Love
    JayVanDyke got a reaction from GregR in Trying to find code to fix issue with mobile   
    @GregR ah i think i missed one selector and i added a few other things to try to make sure it works. Try this.
    @media only screen and (max-width: 640px) { .collection-images .image-container img { left: 0 !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 100% !important; height: 100% !important; object-fit: contain; object-position: center; } }  
  19. Thanks
    JayVanDyke got a reaction from hilary in Endless scroll for homepage   
    @hilary Yea this is a cool setup. It looks like they have the first section on the site duplicated at the bottom. Then when the user gets there and scrolls that into view it moves them back up to the top and slips the original top section into place. Lots of javascript to do this, i dont think there's a simple free solution out there.
  20. Like
    JayVanDyke reacted to tuanphan in Toggle Display Button for Spotify Playlist   
    If you provide 2 embed list link, I can do a quick example & give you code to achieve this.
  21. Like
    JayVanDyke got a reaction from tuanphan in Trying to find code to fix issue with mobile   
    Is the code still in there? If not can you put it back?
  22. Like
    JayVanDyke got a reaction from tuanphan in misalignment/wrong ordering of additional info box on mobile   
    @helpmepls This looks like it has to do with how you have the blocks arranged. I think they are set up so that this one highlighted is the whole screen and then the other one is "floating" on top. This is mainly for letting text wrap around an element but in your case I think you want them side by side. Grab the block on the right and pull it all the way over to the right side until you get the vertical blue line. if theres a blue box then it will do exactly what you have here again. See if that helps!

  23. Like
    JayVanDyke got a reaction from tuanphan in Toggle Display Button for Spotify Playlist   
    @Trentwann I think this is totally doable. I would probably do it using code injection and make a button and another container for the spotify popout. Then using some js just like this one above you would just have it toggle open or closed on click. Happy to help figure it out! I'll send you a DM.
  24. Like
    JayVanDyke reacted to helpmepls in misalignment/wrong ordering of additional info box on mobile   
    you are so clever! i never would have figured this out, thank you so much
  25. Like
    JayVanDyke reacted to creedon in Need Help Urgently trying to make a checkerboard design   
    Please post the URL for a page on your site where we can see your issue.
    A link to the backend of the your site won’t work for us, i.e. a url that contains /config/.
    Please set up a site-wide password, if your site is not public and you've not already done so.
    Post the password here.
    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.
    Please read the site-wide password and how to share a link documentation to understand how they work.
    We can then take a look at your issue.
    You may find How to post a forum question post useful.
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.