Jump to content

creedon

Circle Member
  • Posts

    9,549
  • Joined

  • Last visited

  • Days Won

    79

Everything posted by creedon

  1. I don't disagree! And many others want this feature as well! 🙂
  2. The software that drives this forum is not SS's software. SS uses a forum software provider.
  3. https://widgets.healcode.com/javascripts/healcode.js Is not valid HTML, that is why it is being displayed. It is a syntax error. Remove it.
  4. I'm not seeing the issue. Does the same thing happen when in private browsing? The behaviour you describes sounds like Ajax loading is active.
  5. It appears you have a URL above your style tag. https://widgets.healcode.com/javascripts/healcode.js <style> .header{display: none} </style> This is a syntax error. If the URL is supposed to be there is should be in a script tag. If you don't find the URL there then take a look in Settings > Advanced > Code Injection > HEADER. Let us know how it goes.
  6. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  7. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  8. You may want to try going the using Google Drive storage option for the form. Then you'd share the form publicly and embed it on a page. This technique has been discussed in the forum several times. I don't have any specific pointers.
  9. There are several coding design patterns that can be used for this effect. They have been discussed in other threads on this forum. The first question is do you want a simple (a single style) piece of text? Or, do you need a more complex design, text, images, and etc?
  10. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  11. Please see Portfolio Page Grid Image Aspect Ratio Change. You'll want to decide on a default aspect ratio and then use the code for any Portfolio page where you want a different ratio. Let us know how it goes.
  12. I've searched from time to time for an official SS article on this feature but I've not been able to find one. I learned about the feature years ago from the SS collective. There should be a button at the bottom of the editor window.
  13. You added code to the footer which is site wide to hide the header and footer. Go to the URL < https://porcupine-gopher-849m.squarespace.com/config/safe/ > to get into safe mode so you can edit the footer and remove that code. Let us know how it goes.
  14. I seem to recall several posts about counters on this forum. I don't have any pointers but the search engine here may help. You can also search for examples on sites like codepen, keeping in mind that unless the example explicitly states it's for SS, then you most likely will need to adapt the code.
  15. You can only use iframe for live sites so you can't use iframe to display HTML, CSS, and image files. If I were to approach the issue I'd be looking to pull the relevant bits out of the files and build them into the SS site using SS features and design patterns.
  16. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  17. As a test have you tried loading just one image? Give it a fair amount of time to load, at least several minutes. I'd even be tempted to let it go longer. Take a break, get a cup of coffee. Let us know what happens.
  18. Your CSS is invalid. Use the following. .homepage #header, .homepage #footer-sections, { display : none; } Let us know how it goes.
  19. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  20. The SS Wordpress importer is very temperamental in my experience. The only way I've been able to get images to import has been to massage the XML file. When you imported did the importer report any errors?
  21. Change your code to the following. <style type="text/css"> .header-announcement-bar-wrapper { display : none; } </style> Let us know how it goes.
  22. It is an issue with your site. A Javascript function window.open has been redefined from a function to HTML. The following piece of code in a code block is causing an issue. <script type="text/javascript"> var date = new Date(), year = date.getFullYear(), open = '<p style="text-align: center; font-size: 80%; color: #8C857B;">', copy = '© ' + year + ' Rachel Altschuler Art', close = '</p>', html = open + copy + close; document.write(html); </script> The issue is that your open variable, and others, are already defined in the global space. So you are redefining them. <script type="text/javascript"> const date = new Date(), year = date.getFullYear(), opn = '<p style="text-align: center; font-size: 80%; color: #8C857B;">', cpy = '© ' + year + ' Rachel Altschuler Art', cls = '</p>', html = opn + cpy + cls; document.write(html); </script> I have a different approach that I've used. <p style="text-align: center; font-size: 80%; color: #8C857B;"> © <span id="copyright-year"></span> Rachel Altschuler Art </p> <script> ( ( ) => { const d = new Date ( ); const element = document.getElementById ( 'copyright-year' ); element.textContent = d.getFullYear ( ); } ) ( ); </script> Let us know how it goes.
  23. I had to skip a bunch of questions before I got to the creation part. It seems the most efficient route may be your SS account.
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.