Lelle56
Circle Member-
Posts
28 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Everything posted by Lelle56
-
Change the "___ was Added to your Cart" Pop Up Message?
Lelle56 replied to Lelle56's topic in Customize with code
@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! -
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
-
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
-
Lightbox Image Borders with Border Radius?
Lelle56 replied to Lelle56's topic in Customize with code
@Lesum this worked perfect thank you so much!!! -
Lightbox Image Borders with Border Radius?
Lelle56 replied to Lelle56's topic in Customize with code
hey @Spark-Plugin yes! its https://marcelavasquez.squarespace.com/ password: standout -
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
-
Portfolio Title Above Portfolio Image instead of Below?
Lelle56 replied to Lelle56's topic in Customize with code
@Lesum yesss this did it thank you!!! -
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
-
Border Under Header only on Scroll Down when Header is Fixed?
Lelle56 replied to Lelle56's topic in Customize with code
@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?- 4 replies
-
- heading
- navigation
-
(and 2 more)
Tagged with:
-
Border Under Header only on Scroll Down when Header is Fixed?
Lelle56 replied to Lelle56's topic in Customize with code
@Lesum yes! https://www.studiostellar.net/ password: standout- 4 replies
-
- heading
- navigation
-
(and 2 more)
Tagged with:
-
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
- 4 replies
-
- heading
- navigation
-
(and 2 more)
Tagged with:
-
MOVE SOME NAVIGATION LINKS TO RIGHT SIDE IN HEADER
Lelle56 replied to MarcAdam's topic in Customize with code
@tuanphan that worked perfectly thank you so much!!!- 9 replies
-
- code
- code-injection
-
(and 2 more)
Tagged with:
-
MOVE SOME NAVIGATION LINKS TO RIGHT SIDE IN HEADER
Lelle56 replied to MarcAdam's topic in Customize with code
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!!- 9 replies
-
- code
- code-injection
-
(and 2 more)
Tagged with:
-
Timestamp Code Feature -- Header Positioning Help!
Lelle56 replied to Lelle56's topic in Customize with code
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? -
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
- 1 reply
-
- hamburger
- navigation
-
(and 3 more)
Tagged with:
-
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
-
Increase space height between Hamburger Menu patties?
Lelle56 replied to Lelle56's topic in Customize with code
@tuanphan this did it!! thank you so much 🙂 -
Let's Get Creative with Code 👩💻
Lelle56 replied to inside_the_square's topic in Customize with code
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 -
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
-
Increase space height between Hamburger Menu patties?
Lelle56 replied to Lelle56's topic in Customize with code
@tuanphan URL below! https://sheep-plane-zgpj.squarespace.com/ Password: standout thank you!! -
Increase space height between Hamburger Menu patties?
Lelle56 replied to Lelle56's topic in Customize with code
@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