jmerrill Posted December 7, 2023 Posted December 7, 2023 I'm using a summary (carousel) block on my homepage along with the Lazy Load plugin set to randomize for more than 30 items. This all works great. But I would like to be able to have somewhere between 6-8 items display per row, instead of the default max of 5 per row.
Ziggy Posted December 7, 2023 Posted December 7, 2023 Can you share your website URL? Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
jmerrill Posted December 7, 2023 Author Posted December 7, 2023 Hey @Ziggy, Just curious - why is it I always add my domain in the URL field when creating a post but it doesn't display??? Anyways, sorry. here you go: https://liftin.me
Ziggy Posted December 7, 2023 Posted December 7, 2023 35 minutes ago, jmerrill said: why is it I always add my domain in the URL field when creating a post but it doesn't display? Not sure, it would be useful, but it is not information that is passed on in the question, you always have to add it to the post. Try this Custom CSS: #block-yui_3_17_2_1_1698336619044_8986 .sqs-gallery-design-carousel-slide { width: 12.2%; padding-right: 1%; padding-left: 1%; } This should show 7...hopefully! Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
jmerrill Posted December 7, 2023 Author Posted December 7, 2023 @Ziggy Added the code but no visible change to that summary block - still displaying 5 items.
Ziggy Posted December 8, 2023 Posted December 8, 2023 Interesting, try this tweak to the code: .sqs-gallery-design-carousel-slide { width: 12.2% !important; padding-right: 1% !important; padding-left: 1% !important; } Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
jmerrill Posted December 8, 2023 Author Posted December 8, 2023 (edited) @Ziggy There we go! Thank you. Working now. There was a tiny bit of overflow on a 9th item so I adjusted the percentages and looks great now. Any way I could get some code to reduce the item count for tablet and mobile screens? Edited December 8, 2023 by jmerrill Ziggy 1
Ziggy Posted December 8, 2023 Posted December 8, 2023 1 minute ago, jmerrill said: Any way I could get some code to reduce the item count for tablet and mobile screens? If you place that code inside a media query, we can stop it affecting the tablet and mobile view: @media only screen and (min-width:768px) { .sqs-gallery-design-carousel-slide { width: 12.2% !important; padding-right: 1% !important; padding-left: 1% !important; } } Can you mark my post as the solution and give it a like? Thanks! Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
jmerrill Posted December 8, 2023 Author Posted December 8, 2023 (edited) @Ziggy This is the code I now have in there now—but it's still displaying all items on mobile (with and without the block ID added in there): #block-yui_3_17_2_1_1698336619044_8986 @media only screen and (min-width:768px) { .sqs-gallery-design-carousel-slide { width: 12.2% !important; padding-right: 1% !important; padding-left: 1% !important; } } Edited December 8, 2023 by jmerrill
Solution Ziggy Posted December 8, 2023 Solution Posted December 8, 2023 Try this: @media only screen and (min-width:768px) { #block-yui_3_17_2_1_1698336619044_8986 { .sqs-gallery-design-carousel-slide { width: 12.2% !important; padding-right: 1% !important; padding-left: 1% !important; } } } jmerrill 1 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
Ziggy Posted December 8, 2023 Posted December 8, 2023 Just now, jmerrill said: Perfect! Thank you! Happy to help, thanks for marking my post as the solution, appreciated! jmerrill and tobidot 2 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 📈 SEO Space (Referral link) Ⓜ️ Will Myers' Plugins & Tutorials (Referral link) 🔌 Ghost Squarespace Plugins (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️Pinch-to-Zoom Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment