Just started testing Squarespace for a new website and this just made my day!! :) I also figured out how to make the image go grayscale on hover (for example) instead of using the outline. If I may, I would like to make margin even smaller between the title and "description" but I have the "margin-bottom" already at zero. Any way I can make this?
@josejoaofsantos7 сағат бұрын
And also, is it possible to make the legend appear only when hover?
@beatrizecaraballo2 сағат бұрын
@@josejoaofsantos I'm happy to hear that! And really cool that you were able to set the image to grayscale on hover, love it 💪 As for the spacing, if you're working with a <p> element for the description, it's likely it has some top margin, so you can use this to adjust it: .gallery-caption-grid-masonry p { margin-top: 0; } Then, to make the overlay/caption show up on hover, you can use something simple like this: .gallery-caption-grid-masonry { opacity: 0; transition: all .5s !important; } .gallery-masonry-item:hover .gallery-caption-grid-masonry { opacity: 1; } Feel free to adjust the .5s in the transition to modify the timing of the effect. Hope that helps!
@josejoaofsantos25 минут бұрын
@@beatrizecaraballo Thank you so much! Will try that asap. :)
@linkmediauk3 күн бұрын
Would an infinite GIF effect this process ? I can’t seem to get it to close with the closing animation
@beatrizecaraballo3 күн бұрын
It doesn't affect the loading screen animation, but it can be difficult to match the timing since you can't quite link them together. You'll need to manually set the delay and the outgoing timing of the goodBye screen animation to make it add up the length of the gif as best as possible. You can do so on this line of the code: animation: goodbyeScreen .5s forwards 3.5s cubic-bezier(.5,-.75,.7,2); Where .5s is the time the screen takes from being visible to going away, and the 3.5s is the delay given before the fade out begins. Hope that helps!
@AmaraAdams-gl9de6 күн бұрын
Do you have any tips for a markdown block? I have hover text and all the space appears at the end of the block, when you are not in edit.
@beatrizecaraballo6 күн бұрын
I'm afraid with Markdowns it's usually a case-by-case basis, but if you're using FE it's most likely the block being stretched out when the screen resizes. Feel free to send over a link to your page through beatrizcaraballo.com/contact if you'd like me to take a look! I'd be happy to point you in the right direction.
@peterclamp57818 күн бұрын
Excellent video - so helpful and relatively simple! I love this effect, and want to add it in multiple places... However in some places it needs to be left aligned and in other places centre aligned... is this possible? I see you can change the fonts per code box, but the alignment all happens in the global coding? Hopefully there is a way to do this!
@beatrizecaraballo7 күн бұрын
Thanks so much! I appreciate that. And that's a great question. You can totally make that happen fairly easily. You can add an extra class of your choice to the headings that you want to align differently, to counteract the alignment set through the global CSS. If you're working with an h4, for example, instead of the original structure that only has 2 clases: <h4 class="sp-headline slide"> You can add a third one that can be called anything you want. I'll just call it sp-headline-left: <h4 class="sp-headline slide sp-headline-left"> Then, inside the Custom CSS Window, you can target the headings that have that class and change the alignment: .sp-headline.sp-headline-left { text-align: left; } And of course, you can use the exact same method if you want to center-align the blocks instead, and keep the left alignment global. Just modify the name of your class and/or the value of the text-align property accordingly. Hope that helps!
@sophiegale994719 күн бұрын
This is SO cool! Thank you so much for sharing this Beatriz 🥺 I would love to have this effect in two places on my site. The first instance works perfectly, but when I copy the code exactly (apart from the class which I updated to separate the two) and then copy the footer injection also, it doesn't work on the second instance at the bottom of my page. Do you know if there's anything obvious I'll be doing wrong? 🥺
@sophiegale994719 күн бұрын
I've been trying to figure this out for hours and I knew as soon as I left this comment that it would work 🤣 Thank you again for such a great tutorial.
@beatrizecaraballo16 күн бұрын
Hey Sophie! I'm thrilled to hear you found the tutorial helpful. You're very welcome! And lol, that's how it always goes. Sometimes you just gotta freak out the code a little by putting it on the spot. Glad to hear everything worked out in the end 🙌 If anything else comes up, don't hesitate to reach out through beatrizcaraballo.com/contact so I can point you in the right direction!
@charlottecayre20 күн бұрын
Thank you so much
@beatrizecaraballo20 күн бұрын
You're most welcome! 🙌
@mahmoudab742022 күн бұрын
The links for the icons are not working
@beatrizecaraballo22 күн бұрын
Heya! Are you referring to the ones in the code? If so, those are placeholders. You'll need to replace them with the corresponding URLs of the icons you want to use. Hope that helps!
@erneystacks23 күн бұрын
How can I make it look different for Desktop & Mobile so it fills the screen? thanks in advance
@beatrizecaraballo22 күн бұрын
@@erneystacks with the values used in the tutorial the screen should cover the entirety of the browser window, regardless of the device size. However, if you want the image/gif to cover the whole area, you can adjust the background-size property and set it to cover instead of contain, and then change height and width from 190px to 100%. I hope this helps!
@KaylaJo-h1mАй бұрын
Thanks so much this is incredible! I uploading a GIF but it keeps repeating - is there a way to make it stop after one time through?
@beatrizecaraballoАй бұрын
I'm glad to hear it! You're most welcome. As far as the GIF goes, if you want it to stop repeating you'll need to modify the file itself so that it doesn't loop endlessly and then reupload it. You can also modify the 3.5s of the goodbyeScreen animation to make it match the timing of your existing GIF. However, that will not be super accurate. I recommend going the first route instead. Hope that helps!
@mustafaicilАй бұрын
It works great. Thanks :) But with the sticky menu, in Squarespace 7.1, it becomes impossible to access the Add Block button while editing pages. Each time I need to edit something on the page, I have to remove the CSS line of sticky menu, make the change and then add it back. Is there an easier workaround for this?
@beatrizecaraballoАй бұрын
I'm glad to hear it! You're very welcome. I've updated the 7.1 version snippets to improve things for mobile and avoid backend editing issues! www.beatrizcaraballo.com/blog/sticky-content-navigation-squarespace
@mustafaicilАй бұрын
On mobile, the horizontal sticky menu is splitting into two rows and in a scattered way. How can we adjust it to show the items aligned to each other.
@beatrizecaraballoАй бұрын
I've included a mobile layout snippet inside the post's code to address that issue!
@mustafaicilАй бұрын
@@beatrizecaraballo Thanks :)
@lewisbray4427Ай бұрын
thanks you so much for this tutorial. I have manged to get everything to work but when I put my PNG in it doesnt show up. - it's exported back and white as a png so should be showing up on my screen but nothing. Any advice would be really helpful. thanks :)
@beatrizecaraballoАй бұрын
You're most welcome! Without seeing the site I can't be sure what may be going on, but my guess is that there may be a typo either with the background-image url or the background-size properties inside the CSS portion. Double-check that those show up correctly and if the issue persists, feel free to reach out through the form on beatrizcaraballo.com/contact so I can take a look at the page!
@sdsimonАй бұрын
It works, was a very simple and good solution, considered to use on your website to add code blocks :)
@beatrizecaraballoАй бұрын
I'm glad to hear that worked out for you! 🙌
@nohopelouis3312Ай бұрын
Hi Beatriz. Great tutorial ! Do you have any idea how I could get my wavy scrolling block to stay paused (no motion) or to recreate it as a static element ?
@beatrizecaraballoАй бұрын
Thanks so much! I'm glad you liked it 🙌 Tweaking the animation of the scrolling block is not straightforward because of how it's controlled in the backend. The easiest thing you could do is use an seamless horizontal pattern image to recreate your wave element inside a Code Block or an Image Block. If you need any help building that, feel free to reach out to beatrizcaraballo.com/contact I'd be happy to work with you!
@govbradfordАй бұрын
Hi. Great tip! Is there a way to make a unique message in the announcement bar on a one particular page? Meaning over riding the global message on just one page?
@beatrizecaraballoАй бұрын
Thanks! I appreciate that. And yes, absolutely. You can go the CSS route if you're only looking to change the text: #PAGE-ID .sqs-announcement-bar-text-inner p { position: relative; visibility: hidden; } #PAGE-ID .sqs-announcement-bar-text-inner p::after { content: 'New text goes here'; position: absolute; left: 50%; top: 0; transform: translateX(-50%); visibility: visible; } Just make sure to set your corresponding PAGE-ID in the snippets. And, if you want to change the text AND the URL, you can check out this code available inside the Snippet Directory: beatrizcaraballo.com/blog/alternate-announcement-bar-content-for-one-page Hope this helps!
You are a life saver Beatriz, your tutorials have been very helpful :)
@beatrizecaraballoАй бұрын
Thanks so much! I appreciate it 🙌
@missyissy16Ай бұрын
I was about to pull my hair out until I found this video. I could not customize the parent folder without the style impacting the child sub-folders. HUGE thank you!
@beatrizecaraballoАй бұрын
You're most welcome! I'm glad you found the vid helpful 🙌
@ninedesign108Ай бұрын
Hi Beatriz, this is great. Thanks! I am working on a video page now and wish I could edit the text "You Might Also Like" to something else... I didn't see a customization for this. Wondering if there is one? ~Christina
@beatrizecaraballoАй бұрын
Hey Christina! You're most welcome and that's a great question. The quickest and easiest way to replace that text is with this CSS trick: .lessons-item-related-title { visibility: hidden; } .lessons-item-related-title::before { content: 'See more vids'; position: absolute; visibility: visible; } Just set the "See more vids" to whichever phrase you want to use. Hope that helps!
@ninedesign108Ай бұрын
@@beatrizecaraballo Thanks Beatriz, you’re the best!
@beatrizecaraballoАй бұрын
@@ninedesign108 My pleasure!
@tobywinn22552 ай бұрын
Thank you!
@beatrizecaraballo2 ай бұрын
You're most welcome!
@tiffany-davidson-squarespace2 ай бұрын
Hi Beatriz. Thank you for this very helpful video tutorial. The only issue I am running into (both on Chrome and Safari) is in smaller screens like tablet size, the menu is running into the social icons. Is there a way to make it go to two lines as needed? (to be responsive)
@beatrizecaraballo2 ай бұрын
Hey Tiffany! You're very welcome, I'm glad it helped. There could be a few reasons why that's happening so I'd have to take a look at the site to be able to point you in the right direction. Feel free to send over a link to your site through the form at beatrizcaraballo.com/contact so I can take a look!
@TheRealRyanMickens2 ай бұрын
Hey Beatriz! This code is amazing, appreciate the vid! Is there any way to make the whole entire line shift to the center of the page on desktop, when the words are shorter? For instance, I have written: - For Brand Activations - For Expos But on the "For Expos", I'd like that centered in the middle, instead of off to the left
@beatrizecaraballo2 ай бұрын
Hey Ryan! Thanks so much 🙌 From what you're describing, you'll most likely need to make a small adjustment to the HTML portion of your code, so that the distance between the fixed and looping words change based on the width of the latter. In general, the modification depends on a few factors so I need to see the structure before being able to point you in the right direction. Feel free to send over a link to your site by getting in touch through beatrizcaraballo.com/contact, so I can take a look!
@TheRealRyanMickens2 ай бұрын
@@beatrizecaraballo hey Beatriz 👋, Thanks for replying so quickly! I'll send it over through your contact form right now
@xiarenarnold2812 ай бұрын
Hello! This is amazing. Trying to keep up -- is there a way for it to spin horizontal? (like a coin) right to left, etc. once then stop? Instead of rotating around 360?
@beatrizecaraballo2 ай бұрын
Heya! Thanks so much and I LOVE that animation idea. You can totally do that. I just added the corresponding animation to the code section of the post, so you can grab it from there! It's option #3: www.beatrizcaraballo.com/blog/creating-animated-loading-screen-squarespace Make sure to include the base CSS as well, and option 1 or 2 for the "leaving" animation of the screen. Hope that helps!
@hayleesupple34052 ай бұрын
Hi Beatriz ! Thank you for this code tutorial !! However, is it possible to set this animation just for the homepage while visitors arrive on our website (like a splash animation) ? Instead of every single page of our website as a loading page ? I saw your reply for this and I tried taking that code and just injecting it into the code injection header spot and I am seeing the code in the actual header of the website and its not working. What am I doing wrong?
@beatrizecaraballo2 ай бұрын
Heya! It's my pleasure 🙌 That may be happening if the CSS was also moved to the header area, since that'll require <style> tags around it. In any case, you'll need to move ONLY the HTML part into the Cog icon of your page > Advanced > Page Header Code Injection area. The CSS can stay inside the Custom CSS window, even if you just want the loading screen on one page! Double-check that everything's in the right place and if the code is still being stubborn, feel free to send over your site through beatrizcaraballo.com/contact so I can take a closer look.
@hayleesupple34052 ай бұрын
@@beatrizecaraballo This worked!! Thank you for explaining! :) I never knew there was that advanced code option within the page setting
@beatrizecaraballo2 ай бұрын
@hayleesupple3405 My pleasure! I'm happy to hear that helped. I know, right? It's super hidden yet really useful for that kind of thing
@amrutag88202 ай бұрын
I dont have the "clickthrough" in the code mine says: <div class="gallery-strips-item-wrapper" style="height: 592px; overflow: hidden;"> What are my options?
@beatrizecaraballo2 ай бұрын
Hmmm, I'd suggest double-checking that your chosen gallery slides have a Link set through the corresponding field in the backend, since (for this customization) the overlay will only show on those that do. If that still doesn't work, make sure you're using the "Strips" version of the code inside your Custom CSS window (there are different versions at the end of the post based on the available gallery layouts: www.beatrizcaraballo.com/blog/grid-gallery-overlay-squarespace And if that still doesn't work, feel free to send over your site through beatrizcaraballo.com/contact so I can take a closer look. Hope that helps!
@MegDonnelly-l6w3 ай бұрын
Hi Beatriz! Is there a way of starting with the overlay and then dropping the overlay on hover? So the opposite? Thanks!!
@beatrizecaraballo2 ай бұрын
Hey Meg! Oooh, love that question. And absolutely, that's totally possible! 🙌 You can simply flip the opacity values for the initial state and the hover mode and you'll have the overlay showing at all times, and then hiding on hover. Hope that helps!
@incubus08573 ай бұрын
Hey Beatriz, thanks for the help! The animation works, but it happens to all of my pages, not just on load. If I click a child page, the animation happens there. If I refresh the page, it happens again. Is there a way to do it where it only loads when they go to the homepage, not on sub pages?
@beatrizecaraballo3 ай бұрын
Heya! You're most welcome 🙌 You can make the loading screen appear only on the pages you choose by adding the HTML portion to the corresponding Page Header Code Injection section (Cog Icon > Advanced Tab), instead of the global Code Injection section of the site!
@eCKsplorer3 ай бұрын
Hey there, thanks for the tutorial. I have a question. I am trying for the life of me to edit the thumbnail aspect ratio for these related videos. They seem to be 4:3 but I am looking for 16:9. Is there a way I can do this with the padding command? I can't seem to set up my css to target this exact attribute. Thanks!
@beatrizecaraballo3 ай бұрын
You're most welcome! And that's a great question. You can use this to alter the aspect ratio of those thumbnails and set it to 16:9 : .lessons-item-related-wrapper .lessons-item-related-item-list .related-item .related-item-link-thumbnail { height: 0; padding-bottom: 56.25%; } .lessons-item-related-wrapper .lessons-item-related-item-list .related-item .related-item-link-thumbnail img { height: 100%; position: absolute; left: 0; top: 0; } Hope that helps!
@eCKsplorer3 ай бұрын
@@beatrizecaraballo worked like a charm! Thanks so much!
@beatrizecaraballo3 ай бұрын
@@eCKsplorer Whoop! You're most welcome 🙌
@toribilas3 ай бұрын
This is a great tutorial! However on my page nothing happens when I follow along exactly and type in what you are doing. Any idea what I might be doing wrong to have no effect on the icons?
@beatrizecaraballo3 ай бұрын
Thanks so much! There may be some additional factors affecting the spacing. I'll have to take a look to know what can be done. Feel free to send over your site through: beatrizcaraballo.com/contact !
@NewVistaCG3 ай бұрын
THANK YOU
@beatrizecaraballo3 ай бұрын
You're most welcome! ☺
@MindfulDesignSolutions3 ай бұрын
This has to be the best Squarespace hack ever. Thank you, Beatriz, for sharing this!!
@beatrizecaraballo3 ай бұрын
Thank you so much! I really appreciate that. I'm happy to know this was helpful 🙌
@NicoleHale-vt4ko3 ай бұрын
I've been messing with mine for over a week and you solved my issue in 5 minutes!!! Thank you
@beatrizecaraballo3 ай бұрын
Oh yay! I'm thrilled to hear the tutorial helped with your issue 🙌. You're very welcome!
@celinewangdesign29143 ай бұрын
Hey Beatriz, thanks for the tutorial. Just wondering, is there a way to add a slight zoom or opacity effect to the list item image on hover as well? (image zooming within the media container) I know this will only work on desktop but would be nice to indicate that its clickable for users.
@beatrizecaraballo3 ай бұрын
Hey Celine! You're most welcome 🙌 And that's a great question. You can do that very easily with something like this: .user-items-list-simple .list-item .list-item-media img { transition: all .5s; } .user-items-list-simple .list-item:hover .list-item-media img { transform: scale(1.1); } You can adjust the timing of the transition to make the effect more blunt or subtle, and then replace the transform or add any other property you want to create the hover effect! Hope that helps.
@Daniel-digitalantics.network3 ай бұрын
In a similar vein, I would like to style some text inside the Description field of an item in a list section. Now that they've removed markdown functionality, it seems that bold, italic, and underline are the only styling features available to us, which also limits CSS targeting. Do you have any suggestions on how to add further styling? I would also like to add a strikethrough to a specific word, and I'm clueless as to how to accomplish this. Any suggestions? Thanks for everything.
@beatrizecaraballo3 ай бұрын
UPDATE AUG 2024: the code at the end of the post was modified to work with the latest Squarespace change that disables markdown code inside Auto Layout fields. Make sure to use the new version and setup: www.beatrizcaraballo.com/blog/dropdown-auto-layout-squarespace
@Daniel-digitalantics.network3 ай бұрын
I came here for exactly this reason... thank you for the update.
@beatrizecaraballo3 ай бұрын
UPDATE AUG 2024: there's a new FAQs & Troubleshooting section, at the end of the blog post, that addresses the most common questions that come up from this tutorial + the fixes you can implement to solve those issues! You can check it out here: www.beatrizcaraballo.com/blog/looping-rotating-words-heading-squarespace
@SamBoyle-r9u3 ай бұрын
Hi Beatriz, it seems like the markdown feature inside the auto lists description isn't working anymore. I tried it on two different website. It worked a while back but not today.
@beatrizecaraballo3 ай бұрын
Hey Sam! I know! The update seems to have happened this week, it's such a bummer. I'll be adding an alternative setup route to the blog post shortly 🙌
@SamBoyle-r9u3 ай бұрын
@@beatrizecaraballo thanks!!
@otaku___oasis3 ай бұрын
What's the point of all this when the main issue here is that the Accordion has to be manually placed in the Additional Info for each and every product? Why should we waste this awful lot of time just to slightly move the Accordion when we are wasting already an awfully bigger lot of time placing the Accordion in each product?
@RC-fp3yt3 ай бұрын
Amazing, thank you.
@beatrizecaraballo3 ай бұрын
You're most welcome! 🙌
@sanderpaljak8764 ай бұрын
Thank you! I created a portfolio page with carousels and applied this solution. It works great, but I would like to add some functionality. Either collapse the read more section when the next slide comes up, or open the next read more automatically. Otherwise the previous read more paragraph is opened in the background creating a lot of white space, while the current dropdown is still closed. Can you point me in the right direction ?
@beatrizecaraballo4 ай бұрын
You're most welcome! 🙌 I'm glad to hear that worked out for you. To be able to implement that kind of additional functionality you'll need to modify the code of the dropdown so that it "reacts" based on the visible or focused slide inside the carousel. That's something that falls outside of the scope of the tutorial so I'm afraid I can't provide support for that here. But, if that's something that you're interested in having on your site, don't hesitate to reach out: beatrizcaraballo.com/contact
@michaelstartzman51224 ай бұрын
Hello, and thank you so much for this fantastic tutorial! I have it working flawlessly! Would you be willing to help me figure out how to make the rotating text "scalable" - that newish feature on SQSP that adjusts the text based on the word size? In any case, I've subscribed to your channel and have bookmarked your website! Thank you again for all the amazing SQSP customizations!
@beatrizecaraballo4 ай бұрын
Hey Michael! I'm happy to hear you found the tutorial helpful and thanks so much for the support, I really appreciate it 🙌. That's a really great question, I love the idea. I'll look into it and see if I can cover it in an upcoming vid! In the meantime, you can check out this tutorial on creating "responsive" text with the clamp() function: kzbin.info/www/bejne/h6u1eItom7WrfMUsi=MQLKWc2gei88omx-
@michaelstartzman51224 ай бұрын
@@beatrizecaraballo My absolute pleasure! Thank you for the quick reply and helpful link! I'm watching so many of your videos and learning so much!
@dylansimmons83804 ай бұрын
Thanks for this tutorial! I just sent you an email because I'm still having some issues with my code, including the text getting cut off.
@beatrizecaraballo4 ай бұрын
You're most welcome! I replied to your email earlier 🙌
@fiftyoneeight4 ай бұрын
THANK YOUUUUUU! Geez, that was driving me crazy.
@beatrizecaraballo4 ай бұрын
Lol, I'm so glad to hear this was helpful! You're very very welcome 🙌
@melibaut4 ай бұрын
This is a great video! Can you please make one by displaying all categories and subcategories without going to another page. And if there's a possibility to select multiple options to narrow down the search even more, that would be lovely. Thanks!
@beatrizecaraballo4 ай бұрын
I appreciate that, thank you! You'll need a hefty third-party plugin to make that happen, so I highly recommend checking out Squarewebsite's Universal Filter! It'll help you achieve exactly what you're going for and more: www.squarewebsites.org/squarespace-plugins/p/universal-filter
@simonvanderschaft9015 ай бұрын
Nice, but for multiple pages it doesn't work. I added the most current html code, the second navigation menu doens't get clickable. Code Footer: <script> $(".header-nav-folder-title[href='/producten']").click(function() { window.location.href = "/alle-producten"; }); $(".header-nav-folder-title[href='/subsidies']").click(function() { window.location.href = "/alle-subsidies"; }); </script> Still the subsidies drop down is not clickable. @Beatriz Caraballo. Could you tell me why it doesn't work? Things I already tried: - switched the "subsidies" code with the "producten" code. Than producten was still clickable and subsidies not. - controlled the URL name of the subsidies page, this was right - I putted another URL of another page in the "new link section", still subsidies was not clickable.
@beatrizecaraballo5 ай бұрын
Thanks for sharing your code and troubleshooting steps, that's really helpful! The code is correct so, unless there's a typo, that doesn't seem to be where the problem is coming from. I'm afraid I can't pinpoint the issue without seeing the site, however I would recommend testing on a Guest Mode or Incognito window to see if the problem remains. It could simply be an editor glitch. If it's still not working after that, feel free to reach out through beatrizcaraballo.com/contact so I can take a closer look at your site!
@jacksonparkerstewart78355 ай бұрын
This was such a great tutorial! Quick Q - how would you take out the bounce/sliding from top effect and instead just have the words flash in? Is this a simple tweak in the code? Thanks!
@beatrizecaraballo5 ай бұрын
Thanks so much! I'm glad you liked it. And that's a great question, you can absolutely do that. You'll need to: 1. Modify the original CodePen CSS code and remove aaaaaall the instances of the transform property (both with and without the -moz-, -webkit- and other prefixes) from every single @keyframes snippet. 2. Look for the top offset property inside the .sp-headline.slide b { } snippet and set it to 0 instead of .2em. 3. Adjust the padding: 15px included in the post code: www.beatrizcaraballo.com/blog/looping-rotating-words-heading-squarespace as needed, if applicable. Hope that helps!
@kiragehle5 ай бұрын
This is really helpful, thank you. My fields aren't expanding when I click on them. Is it because I have other scrolling behavior CSS in there? Or am I missing a step? This is the other code I have currenly implemented: html { scroll-behavior: smooth; } /* Hide scroll indicator */ .Index-page-scroll-indicator-line { visibility: hidden; } /* accordion title background */ .sqs-block-accordion .accordion-item__title-wrapper { background-color: #6aaa44; }
@beatrizecaraballo5 ай бұрын
I'm glad to hear it! The code you're sharing doesn't affect the behavior of the form, so it's probably something else. Go ahead and double-check that you have all the code needed, including the jQuery library, inside your site: www.beatrizcaraballo.com/blog/collapsible-squarespace-form-sections Both jQuery parts need to go inside the Code Injection section, and the CSS inside the Custom CSS window. If that doesn't work, feel free to reach out through beatrizcaraballo.com/contact so I can take a closer look at what may be going on!
@kiragehle4 ай бұрын
@@beatrizecaraballo Yup, that was the part I was missing (thought I didn't need it 😅). Thank you!
@LapsofMaps5 ай бұрын
Absolute legend, thank you very much for the time taken to do this tutorial ! Done and fixed.
@beatrizecaraballo5 ай бұрын
I really appreciate that, thank you! I'm glad you found the tutorial helpful 🎉
@JackieScumniotales5 ай бұрын
Hello - thank you for the tutorial. I am trying to limit the number of related products to 3 (total). Do you know how to do this using css? I've tried this code from another forum discussion, but it's not working. Thank you for considering. .ProductItem-relatedProducts .list-grid .grid-item:nth-child(n+4) { display: none; }
@beatrizecaraballo5 ай бұрын
You're most welcome! 🙌 And that's a great question. The snippet you shared works for 7.1 shop pages, so perhaps it's just a glitch in the editor. Try refreshing the page after adding the code or looking at your site via Incognito or Guest Mode. If it works there, you're all set! If not, I'm afraid I can't pinpoint the issue without seeing the site. You can try 1) making sure there are no typos in your code and 2), double-checking you've added it to the Custom CSS window. If none of those troubleshooting steps work, feel free to reach out through beatrizcaraballo.com/contact so I can take a closer look!
@JackieScumniotales5 ай бұрын
@@beatrizecaraballo Thanks very much for replying. May I send you a link to my site so you can see?
@redheaddigital5 ай бұрын
Perfect thank you.
@beatrizecaraballo5 ай бұрын
My pleasure! 🙌
@lzeches55 ай бұрын
Hi Beatriz, I'm trying to implement this code and Squarespace is telling me I have a syntax error on line 1. In fact, adding a simple line of code like <b>hello</b> gives me the same result. I got to about the 5:16 mark in your video and my page didn't go grey. In fact, nothing changed at all. From what I've googled, there are a lot of issues embedding html onto javascript sites. Am I just running into a fluke error? Should I just keep coding and wait for the page to populate? It should also be noted that when I right click on my page and search through the "Inspect" option, I can't find my initial code injection at all (mine matches yours exactly).
@beatrizecaraballo5 ай бұрын
Hey Lynette! I'm afraid I can't be 100% sure of what's going on without looking at the site, but from what you're describing it seems like the HTML is being added inside the Custom CSS window. Is that correct? If so, keep in mind only CSS can be added in there so no HTML tags should be present. If something else is going on and/or you need more help, feel free to reach out through beatrizcaraballo.com/contact so I can take a look at your page!