MillyBanks
-
Posts
80 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Posts posted by MillyBanks
-
-
Hi I have input some custom code to create a cut out text effect with an image behind. It looks great but on certain places the text is cut off at the bottom. Is anyone able to see why the overflow:visable isn't working? 🙂
Thanks in advance!https://polygon-reindeer-hnj3.squarespace.com/home5
h1 { color: #FFFFFF;
-webkit-text-fill-color: transparent;
background: -webkit-linear-gradient(transparent, transparent),
url(https://static1.squarespace.com/static/6630bf9dab885d6b49e527f0/t/6633f2dba9ed5130c98bac2a/1714680542864/jean-luc-benazet-kcKBRFSis18-unsplash.jpg) repeat;
background: -o-linear-gradient(transparent, transparent);
-webkit-background-clip: text;
overflow: visible!important;}
-
Hi, wondering if anyone can help me identify the issue i'm having. I went to edit and correct some spelling mistakes on some sections on my website & it kept auto closing the edit box.
I have recorded a quick loom to show the problem. https://www.loom.com/share/9ac9956ab3c74b8ca63f0fb3af961ae7?sid=f17bbd2f-b67b-4924-9c97-3da602b78d9d
I am assuming this is due to some code I have installed as the issue is gone when I disable scripts. Although the website doesn't have a lot of custom CSS.
I have no idea how to identify an issue with the code? -
-
Hi, hoping this is an easy one!
I have made a one page website and want the navigation bar to anchor down to various sections.
I have added the standard anchor link code blocks where relevant but no matter what I add in the nav bar they aren't working.
I have tried the following:
Adding full links to the nav link - https://www.dovesflightgundogs.com/home#services
Adding the anchor link - #services
Adding the page url and anchor link - /home#services
If someone is able to help that would be great!
Website: https://www.dovesflightgundogs.com/home -
The site is live
www.luxamatravel.com/home
-
Hey @tuanphan- the site is now public and the domain is being transfered
-
-
-
Hi, hoping you can help! I installed this font some time back and had it working on a couple of my sites but it had stopped working and for the life of me I can't see the issue.
This is for a counter graphic on the home page - simply want the numbers to count up as you scroll down.
Can anyone help identity where the problem is? Wondering whether it's in the #block-id's but can't be sure. @tuanphan? 🙏
<script>
(function(){
let playInBackend = true,
timing = 4,
section = '',
direction = 1; 1 = forwards, 0 = backwards
/*Do not Adjust below this line*/
function AutoScrollLayout(e){e=""==e?document.querySelector(".user-items-list-section"):document.querySelector(e);let t,n,o,i,c,r=!1,s=e.querySelectorAll('button[class*="__arrow-button"]');function d(){t=setInterval(u,n)}function u(){o=document.querySelector("body.sqs-edit-mode-active"),i=document.querySelector(".sqs-modal-lightbox-open"),r||o||i||!c||s[direction].click()}n=1e3*timing;if(document.addEventListener("visibilitychange",function(){r=!!document.hidden}),["mousedown","touchstart"].forEach(t=>{e.addEventListener(t,function(){r=!0})}),["mouseup","touchend"].forEach(n=>{e.addEventListener(n,function(){r=!1,clearInterval(t),d()})}),window.IntersectionObserver){new IntersectionObserver((e,t)=>{e.forEach(e=>{c=!!e.isIntersecting})},{rootMargin:"-75px 0px -75px 0px"}).observe(e)}s[direction]&&d()}window.addEventListener("load",function(){let e=new Array;e.push(section),section.includes(",")&&(e=section.split(",")),e.forEach(e=>{(window.top==window.self||window.top!==window.self&&playInBackend)&&new AutoScrollLayout(e)})});
}());
</script>
<script>
// how many seconds do you want it to animate?
var animateSeconds = 3;
/* Do Not Edit Below Here */
function isInViewport(elem) {
var bounding = elem.getBoundingClientRect();
return (
bounding.top >= 0 &&
bounding.left >= 0 &&
bounding.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
bounding.right <= (window.innerWidth || document.documentElement.clientWidth)
);
};
whenReady = function (readyFunc, actionFunc, options) {
if (readyFunc()) {
actionFunc.apply(this);
} else {
if (!options) options = {};
if (!options.current) options.current = 0;
if (!options.max) options.max = 60000;
if (!options.interval) options.interval = 500;
if (options.current < options.max) {
setTimeout(function () {
options.current += options.interval;
whenReady(readyFunc, actionFunc, options);
}, options.interval);
} else if (options.ontimeout) {
options.ontimeout();
}
}
return true;
};
whenReady(
function () {
return document.querySelectorAll("#block-yui_3_17_2_1_1701432935919_19729").length;
},
function () {
// var spacerBar = document.querySelector("#block-yui_3_17_2_1_1701432935919_19729");
var spacerBar = document.querySelector("#block-yui_3_17_2_1_1701432935919_19729");
// save first number
var projects = document.querySelector("#block-yui_3_17_2_1_1701432935919_19729 h1");
var projectsNum = +projects.textContent;
// save second number
var clients = document.querySelector("#block-1b4046f3b88f6d347803 h1");
var clientsNum = +clients.textContent;
// save third number
var ongoing = document.querySelector("#block-ebe95cf3e8d568fc8f4e h1");
var ongoingNum = +ongoing.textContent;
// save Fourth numbervar ongoing = document.querySelector("#block-2933e46eda3812b43cf5 h1");
var ongoingNum = +ongoing.textContent;
// set all numbers to zero
projects.textContent = clients.textContent = ongoing.textContent = 0;
function animateNumbers() {
if (isInViewport(spacerBar) && !window.numbersAnimated) {
// animate the numbers back to their original. over X seconds.
var curProjects = 0, curClients = 0, curOngoing = 0;
var animating = setInterval(function(){
curProjects += projectsNum / (animateSeconds * 100);
curClients += clientsNum / (animateSeconds * 100);
curOngoing += ongoingNum / (animateSeconds * 100);
projects.textContent = Math.floor(curProjects);
clients.textContent = Math.floor(curClients);
ongoing.textContent = Math.floor(curOngoing);
}, 10);
window.numbersAnimated = true;
// turn off the interval after X seconds
setTimeout(function(){
clearInterval(animating);
// set the numbers to their original
projects.textContent = projectsNum;
clients.textContent = clientsNum;
ongoing.textContent = ongoingNum;
}, animateSeconds * 1000);
}
}
// if page loads and numbers are visible
animateNumbers();
// when scrolling
window.addEventListener('scroll', animateNumbers);
},
-
-
Hi,
I found some awesome code for a typewriter effect which is working really well. As often happens there is some unnecessary padding in the code block. On Squarespace 7.1 Fluid Engine.
Is anyone able to help me identity why this is happening?
Thanks in advance
https://www.shiftmovement.org.uk/home
password: SHIFT2023
-
-
Hi @tuanphan this hasn't worked unfortunately.
-
Hi,
WWW.ANNAGRIFFINCOACHING.COMPASSWORD: home8
I need to stop the text in my slideshow banner from hyphenating when screen sizes are changing. If possible scaling the text potentially as it responds?
Any help would be appreciated! @tuanphan?
I currently have the following code addressing the slider text:
section[data-section-id="63bbfb9b8fc9ab56a3e02bbb"]
h2.list-item-content__title {
font-size: 38px !important;
color: #E0BE7E !important;
}
section[data-section-id="63bbfb9b8fc9ab56a3e02bbb"]
.list-item-content__description {
font-size: 20px !important;
color: #E7E0DA !important;
font-weight: 400;
}
section[data-section-id="63bbfb9b8fc9ab56a3e02bbb"]
.list-item-content__description strong {
font-family: The Pallace;
line-height: .8em;
letter-spacing: .01em;
font-weight: 300!important;
font-size: 60px !important;
color: #E7E0DA !important;
}//banner 3 testimonial//
section[data-section-id="646a8e78ef30617fa582bedc"]
h2.list-item-content__title {
font-size: 35px !important;
color: #44535D !important;
}section[data-section-id="646a8e78ef30617fa582bedc"]
.list-item-content__description {
font-size: 18px !important;
color: #44535D !important;
font-weight: 400;
}
section[data-section-id="646a8e78ef30617fa582bedc"].list-item-content__description strong {
font-family: The Pallace;
line-height: .99em;
letter-spacing: .01em;
font-weight: 300!important;
font-size: 55px !important;
color: #44535D !important;
}
p, h1, h2, h3 {-webkit-hyphens: manual !important;
-moz-hyphens: manual !important;
-ms-hyphens: manual !important;
hyphens: manual !important;
}
-
Hi @tuanphan!
sorry try /home-5
___________________________
I have used and adapted the code on a website i'm building. Is there a way to make it stay when responsive?
https://marigold-circle-h5rk.squarespace.com/home-1
-
Hi @tuanphan,
I have used and adapted the code on a website i'm building. Is there a way to make it stay when responsive?
https://marigold-circle-h5rk.squarespace.com/home-1
-
Does anyone know how to make a summary block like this act a bit more like a gallery carousel. Just sliding automatically one to the left to show the next picture not showing the next 4 pictures if that makes sense? I want to use in the footer as a gallery block had an issue with excess bottom padding.
https://www.thecreativitybank.com/
-
Interesting! Thank you so much anyway 🙂
Although it isn't an Instagram block at the moment - just a gallery block? -
@Ziggy it should be public with password - 'Creative' could you take another look?
-
Hi sorry I thought I shared the website https://parrotfish-crimson-3csh.squarespace.com/ password - Creative
-
Hi,
I am using a carousel in place of an instagram feed in the footer of my site while I get things up and running and am having some trouble with the padding at the bottom. The gallery block is causing the footer to have pointless space at the bottom.
Can anyone help?
Thanks in advance!
-
Hi,
I am just putting together a pop up to promote a black friday code for a client.
They simply want the code to appear once they have gathered the email from the client.
I have put this together but when I add the post submit text it appears just awkwardly underneath the GDPR privacy disclaimer. (shown below) Is there a way for the post submit to simply have the desired text in the centre of the box? Like i've mocked up below.
Help would be appreciated asap as the offer goes live tomorrow!
Thanks in advance!
-
Thanks @tuanphan that worked really well!
Anything to make the buttons sit side by side on the very last section?
-
Site URL: http://www.shiftmovement.org.uk/funded-opportunities
Hey trying to get these two buttons at the bottom of my site to sit side by side on mobile but none of this seems to work. I am onBrine 7.0
www.shiftmovement.org.uk/funded-opportunities
password: ShiftMovement1
I am also trying to get the videos in the #testimonials section to stack in a different order.
The first is correct with the video then the quote but the second needs to do the same. any help appreciated!!!!
custom font - cut out image - broken code help please!
in Customize with code
Posted
AMAZING! Thankyou so so much!