-
Content Count
51 -
Joined
-
Last visited
Reputation Activity
-
Webswool reacted to sonoferikdesign in Adding text to a fullscreen slideshow on Ver 7.1
Dear Squarespace team,
Full-width sliding images with the ability to place the same or different text and buttons on each image is absolutely a feature we need. I get this request on literally almost every site I build.
I believe it is a feature that would get used millions of times over. I love what you have built and the more I get used to 7.1, I can see it's advantages. Adding this feature would make 7.1 an absolute no-brainer. Please acknowledge our collective desire to have this implemented as soon as possible.
Thank you for all you do!
-
Webswool got a reaction from bangank36 in Universal Filter not working correctly since Shop 2.0 update
Site URL: https://jordancs.ie
Hey all -
A client of mine has been using the Universal Filter and Lazy Summary plugins to filter the properties on his website. All was working beautifully but things have gone awry since the most recent shop update for 7.1. His issues are:
1. The properties are now listing automatically in order of their geographical location, whereas the client would like to be able to move the order of the properties around to suit his needs (ie. show users properties that are still for sale before showing sold ones)
2. Some of the properties are priced at over €1 million - they had previously got around the pricing cap on Squarespace by leaving the price blank for these products and using an additional "price" variant. This is still working for the universal filter summary blocks, but NOT for the normal summary blocks now...
Anyone else had any instances of the update causing issues with these plugins? My client has reached out to the developer but has been waiting for some time (several months) for a response/solution.
Any ideas would be great!
Sammi x
-
Webswool reacted to tuanphan in Remove Underline cover page Hollow:Follow Cursor
Add to Home > Design > Custom CSS
.portfolio-hover[data-mode="hover-follow"] .portfolio-hover-items .portfolio-hover-item[data-active="true"] .portfolio-hover-item-content { text-decoration: none !important; }
-
Webswool got a reaction from bangank36 in Disappearing image - lazy summaries grid block
I managed to get the image to show up by adding the same image twice to the gallery and placing them next to one another.... but still super odd.
-
Webswool got a reaction from tuanphan in Counter widget/add on
Yes, but I ended up using a slightly different bit of code I think? @IXStudio provided me with a bit of code that included the suffix I needed :-)
-
Webswool got a reaction from IXStudio in Counter widget/add on
Yes, but I ended up using a slightly different bit of code I think? @IXStudio provided me with a bit of code that included the suffix I needed :-)
-
Webswool reacted to IXStudio in Animated counter
Hi,
Answered in the direct message!
Please use the like button if it helps you!
Best,
Leopold
-
Webswool reacted to tuanphan in Re-ordering shop categories BEDFORD
Add to Home > Design > Custom CSS
@media screen and (max-width:700px) { div#productList { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-column-gap: 5px; } }
-
Webswool reacted to tuanphan in How to make FAQ accordion
If Business Plan, use this plugin, easy to customize without coding skills, their support is good
If Personal Plan, use this code (you can contact me if have problem, free)
-
Webswool reacted to tuanphan in Re-ordering shop categories BEDFORD
Add to Home > Design > Custom CSS
/* category reorder */ ul.category-nav-links { display: flex; flex-direction: column; } /* Shop products */ ul.category-nav-links>li:nth-child(1) { order: 1; } /* empty item */ ul.category-nav-links>li:nth-child(2) { order: 2; } /* All */ ul.category-nav-links>li:nth-child(3) { order: 3; } /* ready to bake pastas */ ul.category-nav-links>li:nth-child(6) { order: 4; } /* weekend specials */ ul.category-nav-links>li:nth-child(9) { order: 5; } /* desserts */ ul.category-nav-links>li:nth-child(4) { order: 6; } /* red wine */ ul.category-nav-links>li:nth-child(7) { order: 7; } /* white wine */ ul.category-nav-links>li:nth-child(10) { order: 8; } /* prosecco champagne */ ul.category-nav-links>li:nth-child(5) { order: 9; } /* spirits */ ul.category-nav-links>li:nth-child(8) { order: 10; }
-
Webswool reacted to tuanphan in Gallery Captions HOVER Squarespace 7.1 Please help!
Use this code
I tested on SS 7.1.
.Hi. Sorry for delay. Do you still need help?
I don't see gallery caption/title
https://laurawhiteuhlir.com/design
-
Webswool got a reaction from tuanphan in 7.1 header - center logo + split navigation
Thanks @tuanphan - in the end I ended up cheating as the code I used above became tricky on pages where the logo wasn't hidden.
Instead I've ended up utilising the email and social media elements and using the header button for the contact phone number. Have attached photo. It's a simple fix but it's done the job for this particular project!
-
Webswool reacted to tuanphan in Hiding embed header - code block
If vesselfinder doesn't provide an option to hide that, there's no other way to handle it.
-
Webswool reacted to HelenCrozier in Padding between images Wall Summary Block
Thank you so much for sharing @Webswool - I was hoping to find the answer and your code was perfect!
-
Webswool got a reaction from HelenCrozier in Padding between images Wall Summary Block
Yep! I figured it out in the end and used this solution in the code injection for the page in question (#featured):
<style>
#featured .sqs-block-summary-v2 {padding-right: 3px;
padding-left: 3px;
padding-bottom: 3px;
padding-top: 3px;}</style>
<style>
#featured .Index-page-content { padding-top: 0px !important; padding-bottom: 0px !important; } </style>
<style> .summary-thumbnail-container,.summary-title {margin-bottom: 0 !important;}
</style>
-
Webswool got a reaction from tuanphan in Padding between images Wall Summary Block
Yep! I figured it out in the end and used this solution in the code injection for the page in question (#featured):
<style>
#featured .sqs-block-summary-v2 {padding-right: 3px;
padding-left: 3px;
padding-bottom: 3px;
padding-top: 3px;}</style>
<style>
#featured .Index-page-content { padding-top: 0px !important; padding-bottom: 0px !important; } </style>
<style> .summary-thumbnail-container,.summary-title {margin-bottom: 0 !important;}
</style>
-