Jump to content

Lelle56

Circle Member
  • Posts

    28
  • Joined

  • Last visited

Everything posted by Lelle56

  1. @tuanphan it looks like the pop up message is triggered when the cart is empty, and then an item is added to cart -- you'll see the message if you scroll up to cart icon right after you add a product is there a way to just hide that pop up message entirely rather than change the verbiage? might be easier!
  2. Hey Squarespace Fam! This one is pretty specific but I am trying to alter the message that appears when you add an item to your cart (attaching screenshot) -- I was able to customize the look of the message, but I wanted to change the word Cart to Kart as this company wants to spell it with a K. Not sure where to customize this message! Any ideas? Thanks! L
  3. Hey Squarespace Fam, Can anyone help me decrease this extra padding underneath the Gallery Slideshow Reel? There are no settings for it and I can't find the right selectors. Attaching photo! Thank you!! L
  4. @Lesum this worked perfect thank you so much!!!
  5. hey @Spark-Plugin yes! its https://marcelavasquez.squarespace.com/ password: standout
  6. Hey Forum Fam! Does anyone know how to add a border (correctly) to a lightbox image from a gallery? Here's what I'm working with so far, but as you can see, its not targeting the img correctly. Using Code: /* Lightbox border */ .gallery-lightbox-item-img.content-fit{ border: 1px solid @paper !important; border-radius: 20px; } /* end */ Thanks in advance!! L
  7. @Lesum yesss this did it thank you!!!
  8. Hey yall! I think this is just a simple one but can't figure it out -- anyone know how to have the Portfolio Title positioned ABOVE the portfolio image instead of below? example of what I'm looking for attached I think squarespace had an option for this at one point in settings but now not seeing it. Thank you! L
  9. @Lesum that is perfect thank you!!! Do you know if there is any way to control the transition/appearance of the border fade in so its not abrubt?
  10. @Lesum yes! https://www.studiostellar.net/ password: standout
  11. Hey yall! Does anyone have some CSS that will have the header border (only the underneath border) appear on scroll down when the header is fixed? I want static page to show no border, but once you start scrolling, border appears with fixed header. Thank you!! L
  12. @tuanphan that worked perfectly thank you so much!!!
  13. hey @tuanphan I am in need of the same as this post, I followed your guide and am having just some issues with the right hand side of my menu, I'd like the "CART" button to be farthest child right and I'd like all the right hand menu items to be justified far right with no padding, same as left. Also would like them to be evenly spaced in between items, like left. For some reason not able to figure it out! Attaching a screenshot and here's my website: https://magnolia-hibiscus-g8lg.squarespace.com/ Password: standout May you assist? thank you!!
  14. hey @tuanphan! yes its almost there! however still struggling to get the timestamps to align centered with the middle of the hamburger or even top alignment with hamburger I think centered would look best, trying to use vh to push it down but its not moving 😞 any ideas?
  15. wow how did i miss that 😅 thank you @Ziggy worked perfect!
  16. Hey squarespace fam, I'm trying to execute a forced mobile menu button using the regular navigation button from header settings, but then hiding it on desktop using query. Essentially I am looking for something like the pic attached! Does anyone have a code solve for this? Tried a few different selectors but couldn't get the right one Website: https://sheep-plane-zgpj.squarespace.com/work Password: standout thanks!! L
  17. Hey squarespace fam, I am trying to align the outside edge of the hamburger menu with margin spacing of the rest of the site, so ideally the left edge of the hamburger should be aligning with the left edge of the text box below. The hamburger should have 0px padding on left so that its flush to margins. Tried a bunch of things, no dice 😫 Does someone know how to adjust this? Website: https://sheep-plane-zgpj.squarespace.com/work Password: standout thank youuu L
  18. @tuanphan this did it!! thank you so much 🙂
  19. hey @inside_the_square! here's a few things that would be great to see from squarespace: 1. It would be awesome for there to be an inherent option for images to change into the available squarespace image shape forms on hover 2. Animation / Transition effects without code. I feel like the new text highlight decor / animations are such a close step in the right direction on this! It would also be cool to have a larger variety of animation options (ability to assign different animations to different sections, etc) in the global site settings animations as well. 3. Ability to upload Videos into Gallery sections alongside Images in fluid editor PS love your squarespace videos 🤩 L
  20. Hey all! I've been workshopping this timestamp code that I had my chatgpt write for me (lol) and its so close to being perfect but I can't figure out this one issue: I want the positioning of the stamps to be inline on the right hand corner of the header, inline with the top of the hamburger menu. I have attached a photo of what it looks like now Here's the code I'm using: Header Code Injection: <!-- Timestamps --> <div id="new-york-timestamp" class="timestamp">NY: <span></span></div> <div id="los-angeles-timestamp" class="timestamp">LA: <span></span></div> <div id="paris-timestamp" class="timestamp">PAR: <span></span></div> <script> function updateTime(timezone, elementId) { var now = new Date(); var options = { timeZone: timezone, hour12: true, hour: 'numeric', minute: 'numeric'}; var timeString = now.toLocaleString('en-US', options); document.getElementById(elementId).querySelector('span').innerText = timeString; } // Update time for New York every second setInterval(function() { updateTime('America/New_York', 'new-york-timestamp'); }, 1000); // Update time for Los Angeles every second setInterval(function() { updateTime('America/Los_Angeles', 'los-angeles-timestamp'); }, 1000); // Update time for Paris every second setInterval(function() { updateTime('Europe/Paris', 'paris-timestamp'); }, 1000); </script> CSS: // Timestamps// .timestamp { position: relative; background-color: transparent; color: @charcoal; padding: 0vh 3vw; border-radius: 0px; font-size: .9em; font-family: 'twk300' !important; font-weight: 500 !important; z-index: 1500; display: inline-block; } #los-angeles-timestamp { margin-right: -10px; /* Adds spacing between timestamps */ } #new-york-timestamp { margin-right: -10px; /* Adds spacing between timestamps */ } #paris-timestamp { margin-right: -10px; /* Adds spacing between timestamps */ } /* For screens smaller than 768px (typical mobile devices) */ @media (max-width: 767px) { .timestamp { display: none; } } //end// Website: https://sheep-plane-zgpj.squarespace.com/ Password: standout Thanks yall! L
  21. @Lesum this worked perfectly thank you So much!!!
  22. @tuanphanURL below!! https://sheep-plane-zgpj.squarespace.com/about password: standout thank you again!
  23. @tuanphan URL below! https://sheep-plane-zgpj.squarespace.com/ Password: standout thank you!!
  24. @Ziggy dang this one didn't work for me but thank you so much for responding! I wonder if I have a conflicting code for your solve
  25. Hey yall! I'm trying to achieve this mockup image below -- does anyone have code for turning the Accordion Title font bold only when the accordion item is open? Tried a few things with no luck. Thanks! L
×
×
  • 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.