How to create “Read More” dropdowns inside Auto Layouts in 7.1

  Рет қаралды 1,923

Beatriz Caraballo • Squarespace coding tutorials

Beatriz Caraballo • Squarespace coding tutorials

Күн бұрын

Пікірлер: 29
@beatrizecaraballo
@beatrizecaraballo 3 ай бұрын
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.network
@Daniel-digitalantics.network 3 ай бұрын
I came here for exactly this reason... thank you for the update.
@hollybaerSF
@hollybaerSF Жыл бұрын
No way! This is so cool! I can't wait to use this! THANKS B!! 😀😀
@beatrizecaraballo
@beatrizecaraballo Жыл бұрын
Oh yay! I'm so glad to hear you liked this one! You're most welcome 😊
@oneninedesign
@oneninedesign Жыл бұрын
I love this so much! I was using anchor links to link to the long bio on another page and it's hard to teach clients how to maintain that. Thanks so much!
@beatrizecaraballo
@beatrizecaraballo Жыл бұрын
So glad to hear you found this alternative helpful, Andrea! It's definitely a great way to make things easier for clients to update. It's my pleasure! ☺
@danielhahn655
@danielhahn655 Жыл бұрын
This was brilliant! Thank you!
@beatrizecaraballo
@beatrizecaraballo Жыл бұрын
I appreciate that! You're most welcome ☺
@ThamarCampbell
@ThamarCampbell 5 ай бұрын
This is great! What snippet might be required to create the same effect with a carousel?
@beatrizecaraballo
@beatrizecaraballo 5 ай бұрын
Thank you! And you can use the same code with the Carousel Auto Layout 🙌
@ThamarCampbell
@ThamarCampbell 5 ай бұрын
@@beatrizecaraballo Thank You!
@jenayahawreluik5695
@jenayahawreluik5695 10 ай бұрын
Do you have a video on how to hide and reveal whole sections with a button?
@beatrizecaraballo
@beatrizecaraballo 10 ай бұрын
I don't but Will does! kzbin.info/www/bejne/apDJp3huorRkn8U&ab_channel=WillMyers Hope that helps!
@sanderpaljak876
@sanderpaljak876 4 ай бұрын
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 ?
@beatrizecaraballo
@beatrizecaraballo 4 ай бұрын
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
@MickeyOwenTM
@MickeyOwenTM Жыл бұрын
Thanks. Is there s way to have the link text to disappear? like if it said "read more" we'd want that to disappear and ideally not leave a gap in the paragraph of text.
@beatrizecaraballo
@beatrizecaraballo Жыл бұрын
You're welcome! It depends on how smooth you want the transition to be and how exactly you want the text to go away (fade/slide/etc), but you can achieve a basic text removal with pure CSS by including this in your code: .list-item-content__description h6.open-dropdown { height: 0; margin: 0; visibility: hidden; } Hope that helps!
@atkarx
@atkarx 6 ай бұрын
Is they a way to have the text display to the right of the image?
@beatrizecaraballo
@beatrizecaraballo 5 ай бұрын
Yes, totally! You can use flexbox to make that happen. There's a snippet for that inside the Snippet Directory if you're interested: beatrizcaraballo.com/blog/side-by-side-thumbnail-content-auto-layout-simple-list-squarespace
@KylaVilla-hd6sw
@KylaVilla-hd6sw 7 ай бұрын
For some reason i can't get this to work with the carousel. Any common mistakes that could be causing this? The menu simply won't retract or expand like it's supposed to.
@beatrizecaraballo
@beatrizecaraballo 7 ай бұрын
You may want to check that you have the jQuery library inside your Code Injection section. The script usually says something like code.jquery or ajax.googleapis. If you don't see that, go ahead and grab the one inside the blog post where it says "JQUERY LIBRARY (IF NEEDED)" Add it to your Header Code Injection section and the code should work! If it doesn't, feel free to email me an email to your page + trial password (if the site isn't live) so I can take a closer look at the problem.
@SamBoyle-r9u
@SamBoyle-r9u 3 ай бұрын
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.
@beatrizecaraballo
@beatrizecaraballo 3 ай бұрын
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-r9u
@SamBoyle-r9u 3 ай бұрын
@@beatrizecaraballo thanks!!
@lonesprucecreative
@lonesprucecreative 11 ай бұрын
Can you move the "+" to appear to the left of the H6 text?
@beatrizecaraballo
@beatrizecaraballo 11 ай бұрын
Absolutely! If you change the pseudo-element from ::after to ::before in this line of the code... .list-item-content__description h6::after { } ...you'll have the symbol on the left side of the text! You can also simply write it inside the description field, as part of the h6 text, and skip that code snippet instead. Hope this helps!
@GeekFilter
@GeekFilter 7 ай бұрын
Haven't used square space in 11 years and I've noticed it's more stable but also for more irritating. Following your tutorial I am trying to add the pound signs to get the H6. It does nothing. I have a piece of text that has 6 pound signs followed by more. So this: ###### read more. Any clue what I might be doing wrong? And of course, like every project, it was due yesterday!
@beatrizecaraballo
@beatrizecaraballo 7 ай бұрын
Interesting issue! If you're copy/pasting the text with the space and the pound signs that usually doesn't work. Try pasting in the ######read more text and THEN adding the space inside the corresponding field to bring up the markdown style! Another thing to check for is that you're adding the h6 to the Description field of the slides. The title field doesn't accept any markup. Hope that helps!
@Daniel-digitalantics.network
@Daniel-digitalantics.network 3 ай бұрын
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.
Creating an animated loading screen for Squarespace (7.0 & 7.1)
26:24
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 8 М.
How to Create a Subdomains in Squarespace
3:52
Sqspthemes
Рет қаралды 115
路飞做的坏事被拆穿了 #路飞#海贼王
00:41
路飞与唐舞桐
Рет қаралды 25 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 26 МЛН
УДИВИЛ ВСЕХ СВОИМ УХОДОМ!😳 #shorts
00:49
Removing the space under code blocks in Squarespace 7.1 when using Fluid Engine
9:41
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 1,5 М.
Customize and add an image to your Squarespace announcement bar (7.0 & 7.1)
21:29
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 527
Adding Scrolling Animation to Squarespace Websites
2:06
SquareKicker
Рет қаралды 29 М.
Styling and bottom-aligning ‘Read More’ links for the Basic Grid Blog in Squarespace 7.1
11:20
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 499
Keeping centered navigation links in one single line, in Squarespace 7.1
6:53
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 1,3 М.
Sleek Masonry Gallery Section design in 7.1 with caption overlay and hover mode
17:21
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 2,2 М.
Stopping portfolio page thumbnails from getting cropped in Squarespace 7.1
9:44
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 513
Adding custom icons to the Accordion Block while keeping the arrow or plus sign (7.0, 7.1CE & 7.1FE)
9:46
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 1,2 М.
Center-align the last two slides of Portfolio pages in 7.1
12:06
Beatriz Caraballo • Squarespace coding tutorials
Рет қаралды 265
路飞做的坏事被拆穿了 #路飞#海贼王
00:41
路飞与唐舞桐
Рет қаралды 25 МЛН