-
Posts
443 -
Joined
-
Last visited
Personal Information
Recent Profile Visitors
3,271 profile views
JayVanDyke's Achievements
-
JayVanDyke reacted to a post in a topic: Lost the code for Header in Code Injection!!
-
JayVanDyke started following Change shopping cart icon with uploaded image , Footer Injection Code Showing Up in Footer , Lost the code for Header in Code Injection!! and 3 others
-
Footer Injection Code Showing Up in Footer
JayVanDyke replied to kaydotjpg's topic in Customize with code
@kaydotjpg try this in your Custom CSS body:not(#collection-66e1f85031ff720c814003e3) .flier { display: none; } //the homepage also gets a .homepage class so you don't need the collection ID body:not(.homepage) .flier { display: none; } -
Lost the code for Header in Code Injection!!
JayVanDyke replied to SoniaW's topic in Customize with code
@SoniaW if your site was not public yet and you deleted the code you won't be able to retrieve it unless you happen to still have it open on a window somewhere in the original state. If your site is launched, sometimes if it gets crawled by The Wayback Machine you can find the old code in there but if not then you're kind of out of luck. What did the header code do? -
elisasunga reacted to a post in a topic: font for meta data on blogs?
-
DNS link with Names.co.uk - All is well but SSL won't enable
JayVanDyke replied to MaxNix76's topic in Customize with code
@MaxNix76 We kinda need to see the whole thing to be able to tell. My assumption though is that this is an A record. You'll probably need to delete this one but I'm not sure what record isn't showing up yet. -
@elisasunga The date format is something thats a little more complicated and I'm pretty sure needs javascript in this spot but you could try this in custom css to see if you can get it aligned. There's some weird stuff in Squarespace's css there that's causing this. .blog-basic-grid .blog-meta-section * { font-size: 13px !important; //change to desired font size } .blog-basic-grid .blog-meta-section { padding: 15px 0; //adjust the first number to add spacing above and below. }
-
dropdown color on logo, texts...
JayVanDyke replied to katrinekatrine's topic in Customize with code
@katrinekatrine can you share your link? It's much easier to help if we can see your site. -
AndGov reacted to a post in a topic: Cannot transfer ownership of the domain
-
Change shopping cart icon with uploaded image
JayVanDyke replied to lisbet's topic in Customize with code
@lisbet it looks to me like you've got some css mistakes that are probably making it not work. //these are the same element and there was a missing closing bracket anyway svg.icon--cart { display:none; } // i dont think you need this because of the first rule you have setting display:none; so delete if you dont .header .header-actions-action--cart svg { //stroke:transparent!important } //try using a different element to put your background-image on thats closer to the regular size of the cart element. .header .header-actions-action--cart .Cart-inner { background-image: url(); background-size: contain; background-repeat: no-repeat; } -
@ByLukaMarketing hey there! From what I remember it's not super complicated. DM me if you need some help with it.
- 11 replies
-
- product
- integration
-
(and 3 more)
Tagged with:
-
Eventually we had to have Squarespace basically do it for us because the steps in the guide did not work. I would reach out over chat first and then it should continue through email. They will send you the article and then you just tell them you did it already and it should get escalated. Good luck!
-
dooney2 reacted to a post in a topic: Cannot transfer ownership of the domain
-
tuanphan reacted to a post in a topic: Product images slide on MOBILE view how to take feature off - should be stacked only.
-
@alifelessordinary Try this. @media only screen and (max-width: 767px) { .ProductItem-gallery { .ProductItem-gallery-slides { pointer-events: none !important; //stops the interaction that moves the slides } .ProductItem-gallery-slides-item { transform: translate(0,0) !important; //makes sure they don't move over } } } It does seem to only show the ones that are upcoming since it's setup for that sliding gallery so if you want to fix that for mobile add this like to the slides item element too or just copy and paste this below the current code. @media only screen and (max-width: 767px) { .ProductItem-gallery { .ProductItem-gallery-slides-item { display: block !important; } } }
- 2 replies
-
- code
- code-injection
-
(and 2 more)
Tagged with:
-
Sort of how the title explains it. I have a client that recently had a change in business structure and some ownership and they are trying to give "ownership" to the correct email account that is associated with each business. We have followed the steps here Here's our steps we did today that did not work.... 1. logged in as current owner and started a brand new trial site 2. added payment information but did not sign up for a subscription (this is what their doc says to do) 3. moved the domain over to the new trial site 4. invited the new potential owner and they accepted 5. transferred ownership This resulted in the new account becoming the owner of the trial site but not becoming the owner of the domain. They also did not get any permissions to the domain itself at all even though they are the current owner of the site itself. Anyone had to do this recently and figured out how to go about it?
-
JayVanDyke reacted to a post in a topic: Trying to "hyperlink" directly to a contact form from menu button and other elements.
-
Adding A PNG Image To Footer - Remove Padding
JayVanDyke replied to DavvaMC's topic in Customize with code
@DavvaMC nope cant see the footer. Only seeing your landing page. If you want to just make a test page with a generic section on it and send that link I'll check. -
@chrisyost21 a popup contact form isn't native in squarespace from a header button. To achieve this you would need a paid plugin like this one https://bergendesign.co/lightbox-anything (affiliate link). This will allow you to make a page with only a contact form on it and then use the plugin to have it popup that other page inside a Lightbox when you click the button.
-
Adding A PNG Image To Footer - Remove Padding
JayVanDyke replied to DavvaMC's topic in Customize with code
@DavvaMC can you share your link? If its not live yet you can add a password to the page and share the link with the password. https://support.squarespace.com/hc/en-us/articles/205815528-Site-wide-passwords -
@Styledent not really a native way but there is a great paid plugin that does this. It's pretty well documented and used across SS pretty frequently. affiliate link - https://bergendesign.co/universal-filter
-
JayVanDyke reacted to a post in a topic: Moving 'add to cart' button
-
JayVanDyke reacted to a post in a topic: Margin inconsistency
-
@Shingston try adjusting @Lesum code to be 20px instead of 0. It looks like thats what you have set as your column gap.