-
Posts
178 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Everything posted by abc
-
Sorry, forgot to mark as solution. Done, and thank you.
- 14 replies
-
- squarespace-7.1
- product-page
-
(and 2 more)
Tagged with:
-
In accordion, make description's entire line a clickable hyperlink
abc replied to abc's topic in Customize with code
Figured it out: .accordion-item__description p a { display: flex; } -
In my accordion, I have a description, which is a clickable hyperlink. The problem is that only the description text itself is clickable, not the entire line that the description is in. Is there a way to make the entire line clickable? Take a look at my URL. Notice how hovering the description line is not clickable unless you hover the description text itself.
-
Squarespace store preview pic shows nested navigation. But how??
abc replied to abc's topic in Customize with code
Wow, had no idea. Thank you!- 2 replies
-
- product
- squarespace-7.1
-
(and 3 more)
Tagged with:
-
As you can see, Squarespace store preview pic clearly shows nested navigation when you try to create a new store or a new category. But how do I actually achieve it? Surely, they wouldn't advertise it if it wasn't possible, otherwise it'd be considered false advertisement. Does anyone know how to nest store navigation just like Squarespace shows in the pic? Thanks.
- 2 replies
-
- product
- squarespace-7.1
-
(and 3 more)
Tagged with:
-
@creedon Hmm, I was looking for it under Sources, not Elements. Yep, I see it under Elements. Not sure why searching for it under Sources yields no results. Thank you so much! P.S. Tried donating twice using CC, but got error every time.
-
Hi @creedon I have carefully followed all the instructions, however [data-store-category] is still not found anywhere in the body. Not sure what I'm doing wrong.
-
What's new at Squarespace — August 2024
abc replied to Parker_SQSP's topic in What's new at Squarespace
Every month, there are fewer and fewer and fewer updates for Websites. Disappointing. I guess that's the reason Squarespace got rid of versions; no pressure to release new features or updates. -
@sydneyg Here you go: /* Opening Remarks */ #block-d336c4f5471b3b8037bc li:nth-child(1) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(1) .accordion-icon-container, /* Coffee Breaks */ #block-d336c4f5471b3b8037bc li:nth-child(4) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(4) .accordion-icon-container, #block-d336c4f5471b3b8037bc li:nth-child(10) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(10) .accordion-icon-container, /* Lunch */ #block-d336c4f5471b3b8037bc li:nth-child(7) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(7) .accordion-icon-container, /* Closing Remarks */ #block-d336c4f5471b3b8037bc li:nth-child(13) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(13) .accordion-icon-container, /* Networking Cocktails */ #block-d336c4f5471b3b8037bc li:nth-child(14) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(14) .accordion-icon-container { display: none !important; }
-
What's new at Squarespace — April 2024
abc replied to Parker_SQSP's topic in What's new at Squarespace
In the next update, without using custom code, it would be nice to: 1. Be able to set a custom speed for scrolling marquee. Sometimes 0.5x is not slow enough and 2x not fast enough. 2. Have more design options for scrolling marquee (not just linear and wave). For example, angled, circular, L-shape, or any shape, etc. 3. Be able to display an image or text at an angle. 4. Be able to upgrade blog posts from 7.0 to 7.1 5. Be able to display social icons with custom links anywhere on the site. For example, a business with 100 team members has an individual team page for each team member. Each team member would like to display an instagram icon that links to their personal instagram profile. Can't. 6. Be able to force mobile nav menu on desktop. 7. Have some creative link hover effects. 8. Have some creative text effects on scroll. 9. Have a much faster site-wide Search. For example, on Apple's website, it's instantaneous. 10. Be able to upload static or animated SVG logo to header. 11. Be able to upload SVG, PDF, WebP, HEIC files to Asset Library and be able to display them anywhere on the site. -
Contact button color when on the contact page
abc replied to videomatt32's topic in Customize with code
Try this: .primary-button-style-outline .sqs-button-element--primary { border-color: #F4B032 !important; color: #F4B032 !important; } .primary-button-style-outline .sqs-button-element--primary:hover { color: #fff !important; background: #F4B032 !important; } -
Thank you so much!
-
CSS Help Needed: Underlining Hyperlinks in Paragraph Texts Only
abc replied to a topic in Customize with code
Use p a instead of just 'a'