Jump to content

Nick_SquareKicker

Circle Member
  • Posts

    286
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    Nick_SquareKicker reacted to dynamoultima in Introduce your business!   
    Hi there!
     
    My name is Lexi - Co-Founder of Dynamo Ultima. I wanted to introduce myself!

    I am a brand strategist, web designer & sales page expert! My fiance and I run our design studio together and have been for 8 years. We live in Portland, Oregon!
    Right now our design studio offers two ways to work with us..

    VIP Design Days: we create full brand + websites in Squarespace during these days for our clients!
    Sales Page Lab: My newest program I am launching next month to help my clients and our audience learn to design converting, strategic and aesthetically beautiful sales pages for their launches!

    I am really excited about the new Fluid Engine, I have been designing in Squarespace since 2013 - so this update is definitely going to change the game, I have had so many people ask me to design in ShowIt - but i've always loved Squarespace and have experience with code and am able to create completely custom sites in Squarespace. This update will help with a lot of the clients asking about Showit, now I can tell them Squarespace is able to do mostly the same thing!
    Anyway, I have been on circle for a long time, but never introduced myself properly. :)

  2. Like
    Nick_SquareKicker reacted to Martian in How to embed borderless, autoplaying, looping videos on Squarespace   
    OHMY GOD!!! thank you!!!!!! I was wrestling with this for 2 days!!!!!! NO HELP FROM SQUARESPACE SUPPORT!!
  3. Like
    Nick_SquareKicker reacted to jose in Introduce your business!   
    I'm a partner at Levie, an independent branding and design agency based in Miami which I co-founded and run with my wife since 2013.
    Our agency's ethos is to build authentic connection between brands and people through strategic design.
    We specialize in branding, packaging design, visual communications, positioning strategy, and web design.
    From local to global brands, our team has consistently designed identities and positioned businesses that have become market leaders in their respective industries.
    We design for clients in a variety of sectors, including retail, consumer goods, hospitality, real estate, international development, large-scale conferences, and the spirits industry.
    Check us out: levie.co

  4. Like
    Nick_SquareKicker reacted to annaspencer in Introduce your business!   
    Hi, I'm Anna...
    My business, Anna Spencer Creative Media & Design offers affordable website design, maintenance and support for churches, non-profits and small businesses.  I am also a social media consultant, graphic designer and blogger.  I became passionate about working with churches, non-profits and small businesses in 2018 while I was helping my own church with a website redesign project.  It was obvious that organizations with little to no money needed a budget-friendly option to create their own digital presence in order to be competitive in today's business climate.  That's where I come in.  I show clients how to get the most for their money through Squarespace websites AND I train their staff on how to maintain their websites in house OR offer an hourly rate to maintain the website for them.  In addition, I contract services for various social media products.  While my business is less than five years old, I'm excited about what I do and love all the opportunities technology makes available to organizations of all sizes.  
  5. Like
    Nick_SquareKicker reacted to AnnaBizSites in Introduce your business!   
    Anna with ModernBizSites!
    Connect with me! Build stellar websites to help generate customers and create leads!
    😊 
    Leap into the world wide web with us! 🐯
    modernbizsites.com
     
  6. Like
    Nick_SquareKicker reacted to DappDetroit in Introduce your business!   
    Hello! I build sites for businesses and founders, we especially like to help female founders and philanthropic orgs and those looking to raise capital as we are part of several programs and funds and specialize in startups. You can also feel free to connect with us on LI: https://www.linkedin.com/in/ramonay/
  7. Like
    Nick_SquareKicker reacted to Mini in Introduce your business!   
    Hello!
    My name is Mini and I'm the owner + principal web designer at Purple Lotus Web Design based in Boston area. I provide website solutions to women owned - small businesses, women entrepreneurs and side hustlers by building thoughtfully designed and strategic informational or e-commerce Squarespace sites. 
    My design philosophy is - Keep it Simple, but Significant. I have worked with several platforms, but Squarespace is my favorite as it allows me to build Simple + Significant websites but also, allows my clients to update and maintain their websites on their own with ease after launch. 
    Visit my website - https://www.purplelotuswebdesign.com to check out my work. 
    Happy to be here and be part of this great community!
  8. Thanks
    Nick_SquareKicker got a reaction from Paulll in How to embed borderless, autoplaying, looping videos on Squarespace   
    SQUARESPACE HAS REMOVED THE EMBED "<>" FEATURE FOR ADDING IFRAME IN VIDEO BLOCKS.  THIS MEANS THAT YOU NEED TO USE A EMBDED BLOCK INSTEAD. HOWEVER, YOU ALSO NEED THE BELOW CSS ADDED TO YOUR CUSTOM CSS AREA TO MAKE THE IFRAME FILL THE EMBED BLOCKS.
    The below screenshot is a youtube iframe embed code in an embed block. The embed block on the left is a iframe without CSS , the embed block on the right is an iframe with the necessary css. 
    Embed Block Iframe Code: Youtube Example:
    <iframe src="https://www.youtube.com/embed/_OuUbl_WKZU?playlist=_OuUbl_WKZU&autoplay=1&mute=1&controls=0&loop=1" frameborder="0" allow="accelerometer; " allowfullscreen></iframe> Embed Block Iframe Code: Vimeo Example:
    <iframe src="https://player.vimeo.com/video/625215456?autoplay=1&loop=1&autopause=0&background=1&muted=1&color=ffffff&controls=0&portrait=0"  frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe> CUSTOM CSS NEEDED (Custom CSS Area)
    // Embed Block for Video #siteWrapper .embed-block {   aspect-ratio:  16/9 ;   margin: 17px;   padding: 0px !important;       iframe {     position: absolute;     width: 100%;     height: 100%;   }      &:first-child,   &:last-child {       padding: 0px !important;    } }  

  9. Like
    Nick_SquareKicker got a reaction from sorca_marian in Auto Scroll Carousel Block Squarespace 7.1   
    Hi @rebeccagracedesigns, 
    I've gotten a few customer support tickets from SquareKicker customers complaining about Squarespace not working because the SK UI keeps closing.  I found this code above was the issue and after searching google for it, it lead me here.
    Because it initiates a "Click" every 3-5 seconds, when in EDIT MODE when you open something on Squarespace, (SQSP UI or even Add Section) 3 seconds later it closes.  This is because the code above is simulating a click on the screen which force closes the UI.
    It also should only be in the header injection of a page with a carousel NOT the footer, otherwise your websites console triggers an error every 3 seconds, which is not great for SEO or performance.
    This code really needs to be wrapped in "Do not run this if the page is in Edit Mode." See code update below:
    NOTE: For Squarespace 7.1 (untested on 7.0)
    <script> if $( 'body.sqs-edit-mode-active').length ) { window.onload = function() {   var nextArrow = document.querySelector(".summary-carousel-pager-next");      function clickNext() {     nextArrow.click();   }     setInterval(clickNext, 3000); }; } </script>  
  10. Like
    Nick_SquareKicker reacted to S2S in Introduce your business!   
    Greetings! My name is Dawn. 
    Sibling to Sibling is a 501(c)(3) organization dedicated to supporting siblings affected by the loss of a sibling to suicide.
    Siblings often feel left out - we send custom grief boxes to siblings with messages of hope and comfort. It is our mission to let siblings know they are not alone. 
    Currently, several of us Moms who have lost children to suicide are helping to get the organization started. My son, Krys, was 30 when he died by suicide in 2018. 
    Siblingtosibling.org
    PW: 1221Sss2s!
    Thank you all for your support,
    Dawn
  11. Like
    Nick_SquareKicker reacted to bethanyv in Introduce your business!   
    Hi there, nice to meet you. My name is Bethany and I'm an artist, illustrator, designer based in Calgary, Canada. I love Squarespace for it's mobile-friendly platform, e-commerce, awesome customer service and other great features. I have three businesses: I provide original artwork and illustration services, graphic design services and also am a singer/songwriter. Let me know if you'd like to collaborate! More info can be found on my Web portal: bethanyvanderputten.com 
  12. Like
    Nick_SquareKicker reacted to SUNKISSED in Introduce your business!   
    Hello ! 

    It's cool to read about everyone and their business here- thanks for sharing. 

    The pandemic had me reevaluate my life, and what i wanted to do- so I wrote a business plan, made a mock website, found an investor,  sold most of my belongings in Atlantic Canada, and moved to Thailand to start a yacht charter company. 

    www.sunkissedyachting.com 

    We currently own a 38ft sailing catamaran here which we bought in Indonesia and I sailed back to Phuket, and i also have access to another 40ft catamaran. 

    Right now I am just about finished with the regulatory hoops, and insurance and all that jazz and I am just waiting for rainy season to pass us by in hopes of a strong start later this year.

    If anyone is coming out this way, lets link up!

    Cheers

    Logan



     

  13. Like
    Nick_SquareKicker reacted to brenna in Introduce your business!   
    Hi! I'm a photographer and graphic designer in Kansas City. I have a degree in graphic design and have worked as a designer for about ten years. My absolute passion is photography though! 
    https://www.kaiserinphoto.com/
    https://www.kaiserincreative.com/
  14. Like
    Nick_SquareKicker got a reaction from LoftyDevs in Introduce your business!   
    My name is Nick and I’m the founder of SquareKicker.com. SquareKicker is an intuitive, no-code Squarespace design and animation extension which allows you to bring your Squarespace websites to the next level.
    SquareKicker started as an idea while I was working as a freelance web designer. As my business Frontier Media grew I began hiring more staff to help me develop custom websites.
    When COVID hit New Zealand in March 2020, we went into lockdown and spent all of our time working on the idea I had for SquareKicker.
    After proof of concept took shape, my wife and I took out a second mortgage and scaled our team and released SquareKicker to the world in October 2020. It’s grown ALOT since then with over 3500 websites in the last 12 months.
    We are continuing to push the boundaries of what’s possible with no-code web design so anyone can create their unique design without any complex technical barriers. 
    We are currently a team of 6. You can read and watch more about our company on our website here: https://squarekicker.com/company

  15. Thanks
    Nick_SquareKicker got a reaction from klmastre in How to embed borderless, autoplaying, looping videos on Squarespace   
    SQUARESPACE HAS REMOVED THE EMBED "<>" FEATURE FOR ADDING IFRAME IN VIDEO BLOCKS.  THIS MEANS THAT YOU NEED TO USE A EMBDED BLOCK INSTEAD. HOWEVER, YOU ALSO NEED THE BELOW CSS ADDED TO YOUR CUSTOM CSS AREA TO MAKE THE IFRAME FILL THE EMBED BLOCKS.
    The below screenshot is a youtube iframe embed code in an embed block. The embed block on the left is a iframe without CSS , the embed block on the right is an iframe with the necessary css. 
    Embed Block Iframe Code: Youtube Example:
    <iframe src="https://www.youtube.com/embed/_OuUbl_WKZU?playlist=_OuUbl_WKZU&autoplay=1&mute=1&controls=0&loop=1" frameborder="0" allow="accelerometer; " allowfullscreen></iframe> Embed Block Iframe Code: Vimeo Example:
    <iframe src="https://player.vimeo.com/video/625215456?autoplay=1&loop=1&autopause=0&background=1&muted=1&color=ffffff&controls=0&portrait=0"  frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe> CUSTOM CSS NEEDED (Custom CSS Area)
    // Embed Block for Video #siteWrapper .embed-block {   aspect-ratio:  16/9 ;   margin: 17px;   padding: 0px !important;       iframe {     position: absolute;     width: 100%;     height: 100%;   }      &:first-child,   &:last-child {       padding: 0px !important;    } }  

  16. Thanks
    Nick_SquareKicker got a reaction from JoelleM in How to embed borderless, autoplaying, looping videos on Squarespace   
    Just sent you a message.  I'll give you a hand.
  17. Like
    Nick_SquareKicker reacted to mrsknits in Introduce your business!   
    Hello. I'm Bonnie (Mrs. Knits) Mariconda, proud owner of Mrs. Knits Yarn Shop. We specialize in Japanese Yarns. Mrs. Knits has been on eBay since 2005 and is also on the web and social media. Check us out at www.mrsknits.com for Happy Knitting!
  18. Thanks
    Nick_SquareKicker got a reaction from KitCasey in How to embed borderless, autoplaying, looping videos on Squarespace   
    SQUARESPACE HAS REMOVED THE EMBED "<>" FEATURE FOR ADDING IFRAME IN VIDEO BLOCKS.  THIS MEANS THAT YOU NEED TO USE A EMBDED BLOCK INSTEAD. HOWEVER, YOU ALSO NEED THE BELOW CSS ADDED TO YOUR CUSTOM CSS AREA TO MAKE THE IFRAME FILL THE EMBED BLOCKS.
    The below screenshot is a youtube iframe embed code in an embed block. The embed block on the left is a iframe without CSS , the embed block on the right is an iframe with the necessary css. 
    Embed Block Iframe Code: Youtube Example:
    <iframe src="https://www.youtube.com/embed/_OuUbl_WKZU?playlist=_OuUbl_WKZU&autoplay=1&mute=1&controls=0&loop=1" frameborder="0" allow="accelerometer; " allowfullscreen></iframe> Embed Block Iframe Code: Vimeo Example:
    <iframe src="https://player.vimeo.com/video/625215456?autoplay=1&loop=1&autopause=0&background=1&muted=1&color=ffffff&controls=0&portrait=0"  frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe> CUSTOM CSS NEEDED (Custom CSS Area)
    // Embed Block for Video #siteWrapper .embed-block {   aspect-ratio:  16/9 ;   margin: 17px;   padding: 0px !important;       iframe {     position: absolute;     width: 100%;     height: 100%;   }      &:first-child,   &:last-child {       padding: 0px !important;    } }  

  19. Like
    Nick_SquareKicker reacted to RyanCaldarone in Introduce your business!   
    Hi Everyone 🙂,
    I'm a copywriter and marketing consultant. I've had my Squarespace site since I think version 6. The consultant part of what I do is primarily website audits for SEO and UX and building new sites on 7.1. 
    My freelance business is my part-time hobby / side project that helps me stay fresh. I'm a full time marketing manager. 
    Check out my site www.pocketwriter.biz 
    Totally feel free to hit me up there or here if you think I can help in any way. 
  20. Like
    Nick_SquareKicker reacted to LSPNYC in Introduce your business!   
    Just rebranded our Psychotherapy Practice in NYC to LSP - https://lsp.nyc.  Squarespace made it easy to move to 7.1, but still not seeing a big improvement in load times, unfortunately.  Provided them that feedback and hope they continue to make improvements.  Great to see so many others learning how to use the platform effectively!
  21. Like
    Nick_SquareKicker reacted to studiofounded in Introduce your business!   
    Hi everyone!
    I run a brand design studio, and I recently launched my second business, where I offer design templates and resources to help small businesses thrive and grow.
    We currently offer website templates, but have a whole host of business plan and strategy workbooks, plugins, and stock photos on the way!
    After working with 500+ businesses in the last few years and starting several businesses of my own, I know how hard starting a business can be, and I wanted to create a resource to make sure other business owners don't have to struggle on their own.
    I am looking for designers and developers to help us build product collections—if this is you, feel free to reach out 🙂 
    www.sisutemplates.com
  22. Like
    Nick_SquareKicker reacted to paul2009 in embed YT-Movie responsive not with VIDEO   
    Yes, Squarespace recently removed support for embed code from Video Blocks. You can still add Vimeo and YouTube URLs but not embed codes. These must be added using Embed Blocks and this does require you to specify dimensions.
    See this post for further guidance:
    Did this help? Please give feedback by clicking an icon below  ⬇️
  23. Love
    Nick_SquareKicker reacted to covertstylist in Introduce your business!   
    Hi! After being a fashion stylist at big name companies for the several years, I recently launched my own website where stylist friends and I offer free shopping lists for people who hate shopping. The Covert Stylist.
    First time Squarespace user and had a lot of fun with the design process!

  24. Like
    Nick_SquareKicker reacted to mcafee.michelle in Introduce your business!   
    Hello! I'm a writer, photographer, and fairly new graphic designer. I dipped my toe in Circle three years ago, but wasn't serious about building websites until recently. I have enough clients and sites now to need some extra input at times and I'm super grateful Circle is here.  www.michellemcafee.com
  25. Like
    Nick_SquareKicker reacted to purposebranding in Introduce your business!   
    Hi all!
    Interesting community here! I’m a small biz, just like many of you and we focus on marketing that gets serious results. 
     
    We help businesses clarify their messaging so they can stand out in the market place so they can start growing again.
    We exclusively use Squarespace for all our web development!
    visit:
    www.purposebranding.net
×
×
  • 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.