-
Content Count
85 -
Joined
-
Last visited
-
Days Won
1
devonstank last won the day on June 22 2017
devonstank had the most liked content!
Personal Information
- Website
-
Location
Harrisburg, PA
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
How do I create hide/show text on a page, like you see with FAQs?
devonstank replied to mford's question in Coding and Customization
There are many solutions out there (some good and some bad), but you'll need to do some Googling to find them. Basically, you'll need to Have some JavaScript run under the code injection section to manipulate some HTML within a code block. This feature is typically called a drop-down accordion. Devon Stank @ Devonstank.com (Squarespace Tips & Tricks) -
How do I create hide/show FAQs in Squarespace (collapsed text) ?
devonstank replied to wklz's question in Coding and Customization
There are many solutions out there (some good and some bad), but you'll need to do some Googling to find them. Basically, you'll need to Have some JavaScript run under the code injection section to manipulate some HTML within a code block. This feature is typically called a drop-down accordion. Devon Stank @ Devonstank.com (Squarespace Tips & Tricks) -
How Can I add a hover + text + button over images?
devonstank replied to macus's question in Coding and Customization
There are many solutions out there (some good and some bad), but you might want to do some Googling to find them. Basically, you need to write some custom Less (CSS) to change the styling of Squarespace's Image Caption Overlay on Hover effect. Ultimately, overriding Squarespace's default styling. Devon Stank @ Devonstank.com (Squarespace Tips & Tricks) -
devonstank joined the community
-
Five: Making FAQ page accordion style?
devonstank replied to lrosen's question in Coding and Customization
There are many solutions out there (some good and some bad), but you'll need to do some Googling to find them. Basically, you'll need to Have some JavaScript run under the code injection section to manipulate some HTML within a code block. This feature is typically called a drop-down accordion. Devon Stank @ Devonstank.com (Squarespace Tips & Tricks) -
Redirect after successful form submission
devonstank replied to SSDEV's question in Coding and Customization
I have a solution for this posted on my site with a simple how-to video, as well as easy-to-read written instructions. You can find it at devonstank.com/squarespace-form-redirect Devon Stank @ Devonstank.com (Squarespace Tips & Tricks) -
There are many solutions out there (some good and some bad), but you might want to do some Googling to find them. Basically, you need to write some custom Less (CSS) to change the styling of Squarespace's Image Caption Overlay on Hover effect. Ultimately, overriding Squarespace's default styling. Devon Stank @ Devonstank.com (Squarespace Tips & Tricks)
-
How can I change the style of my caption overlay on hover?
devonstank replied to HeartAndDash's question in Coding and Customization
There are many solutions out there (some good and some bad), but you might want to do some Googling to find them. Basically, you need to write some custom Less (CSS) to change the styling of Squarespace's Image Caption Overlay on Hover effect. Ultimately, overriding Squarespace's default styling. Devon Stank @ Devonstank.com (Squarespace Tips & Tricks) -
Creating a pricing table like the Squarespace site?
devonstank replied to ste's question in Coding and Customization
There are many solutions out there, but you'll need to do some Googling to find some "Squarespace Pricing Tables". Basically, you need to create a Code Block and have some Less (CSS) to handle the visual design of said HTML. Devon Stank @ Devonstank.com (Squarespace Tips & Tricks) -
How Can I add a hover + text + button over images?
devonstank replied to macus's question in Coding and Customization
Basically, I'm using a Code Block with custom HTML5 for the structure and CSS (LESS) for the styling. However, you could still make this happen on an Image Block with the caption set to overlay on hover and just use CSS to override the default styles. So, if you add a link in the caption you could style to look like a button. Below could be a good starting point to override the styles and get things in place for styling with CSS. .image-caption-wrapper { opacity: 0; text-align: center !important; top: 0 !important; &:hover, &:focus { opacity: 1; } .image-caption { le