Jump to content

creedon

Circle Member
  • Posts

    9,559
  • Joined

  • Last visited

  • Days Won

    79

Posts posted by creedon

  1. The short answer is no.

    It would be grand if SS allowed blocks to be moved between the footer and other page sections but that is not a feature.

    I think the best you can do is get two windows or tabs going and try to copy as much info as possible between the two windows. This would mostly apply to text blocks.

  2. On 7/29/2022 at 1:31 PM, StaceChamp said:

    I tried your code again and it doesn't work.

    It does work. This is what I see when I install it locally.

    You can see clicking on the image opens a new tab and goes to the source URL. I cut out the part of the whole page loading to not make the video unnecessarily long.
  3. 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.

  4. 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.

  5. 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.

  6. 8 hours ago, Pete3000 said:

    Im now at a phase where I followed https://github.com/tomsWebConsulting/twcsl/tree/main/v7.1/Add Buttons to Header#add-buttons-to-header these instructions but nothing seems to happen. I must have done something wrong. 🤔

    My code is designed to copy an existing Call to Action button in the header and modify it, therefore creating extra CTA buttons.

    1047425444_ScreenShot2022-07-28at12_48_17PM.png.db25bb7119c370b1e7b1a27bc2f58898.png

    Although you can use CTA buttons for language switching. I think most folks use other means. Such as the links you show in your image. Just a note CTA buttons can be made to look like links with extra CSS.

  7. 7 hours ago, gregaitch said:

    is it an implementation by Squarespace, or limitation of the underlying CSS grid technology?

    CSS grid like any technique will have limitations at some point. I'm not aware of any official stated limitation. The limitations you are likely to run into is how various browsers handle rendering the grid. Making calculations and such takes memory, taxes the performance capabilities of the browser, computer, and even the network. The other thing to consider is not everyone has the latest and greatest of all these pieces of the pie.

    So with that in mind SS may have done some testing to find a balance between too many columns and too few. Or they could have done something simple like hey 12 columns in the classic editor isn't enough fine grain control and went to 24.

  8. 4 hours ago, theloopylace said:

    In Squarespace 7.1 I want to change the size of the "Older Posts" link that appears with the use of the Blog Grid.

    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.

  9. As @paul2009 mentions the cart page can't be removed. However with JavaScript it is possible to redirect the cart to another URL. You have to be on a plan that allows JavaScript to run on your site.

    Add the following to Settings > Advanced > Code Injection > HEADER.

    <script>
    
      ( ( ) => {
      
        /*
        
          cart page redirect to url
          
          Version     : 0.1.0
          
          SS Versions : 7.1, 7.0
          
          By          : Thomas Creedon < http://www.tomsWeb.consulting/ >
          
          */
          
        const url = '[enter url here between single quotes replacing square brackets]';
        
        // do not change anything below, there be the borg here
        
        if ( location.pathname != '/cart' ) return; // bail if not cart page
        
        location.href = url;
        
        } ) ( );
        
      </script>

    Let us know how it goes.

  10. You are not missing anything.

    I don't know of a solution to the effect you want to achieve. However it may be possible to achieve it. Here is an experiment with CSS only.

    1546405333_ScreenShot2022-07-26at4_13_51PM.thumb.png.1ec8bd3507bcddf8a8ee84ad97d15f8e.png

    1100230072_ScreenShot2022-07-26at4_14_16PM.thumb.png.a1978c81c450cb70e0b30ea8401913c7.png

    #siteWrapper {
    
      display : grid;
      grid-template-areas : "header header"
                            "left main"
                            "footer footer";
      grid-template-columns : 20vw 80vw;
      
      }
    
    .floating-cart {
    
      grid-area : header;
      
      }
    
    #header {
    
      grid-area : left;
      position : unset;
      
      }
    
    #page {
    
      grid-area : main;
      
      }
    
    #footer-sections {
    
      grid-area : footer;
      
      }
    
    #page .page-section:first-child {
    
      padding-top : unset !important;
      
      }
    
    .header-display-desktop,
    .header-title-nav-wrapper,
    .header-nav-list
    
      {
      
        flex-direction : column;
        
        }
    
    .header-title-nav-wrapper {
    
      align-items : unset;
      
      }
    
    .header-layout-nav-right .header-nav-list {
    
      justify-content : unset;
      
      }
    
    .header-layout-nav-right .header-nav {
    
      text-align : left;
      
      }
    
    .header-layout-nav-right .header-nav,
    .header-layout-nav-right .header-nav-item:not( :first-child ):not( .header-actions-action--cart ) {
    
      margin-left : unset;
      
      }
    
    .header-layout-nav-right .header-nav {
    
      padding-left : unset;
      
      }

    Again this is not a solution it is an experiment. I did not exhaustively test all the elements of the page to see if they would fit or work properly. Also one would probably want to restrict this effect to desktop only.

    What this code shows is that it may be possible to achieve the effect you want with some not insignificant amount of work.

  11. I suggest a different strategy instead of using CSS to hide a category. Create a second Store page in the Not Linked area of Pages.

    Create your Prints 2022 products in that store. Any that you have created already can be moved to this new store. You can also add a password to the Store page to restrict access to those you give the password.

  12. 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.

×
×
  • 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.