Jump to content

JayVanDyke

Circle Member
  • Posts

    369
  • Joined

  • Last visited

Posts posted by JayVanDyke

  1. I have a client who has a Member Sites area but has part of the content in front of the paywall in a blog. That blog has lots of links to the paywalled pages and SEM Rush is telling us that they are resulting in 401 errors. I'm wondering if trying to add a script to add nofollow links would help fix this issue? Any other suggestions? The client cannot change those links due to the size of the blog currently and the way they want the links to work.

     

    Thanks!

  2. It's really not a great SEO strategy due to having two sets of identical images or content but this is what I suggested at the end of my post above too. For an image gallery in particular this could really hurt your page and slow it down if its loading double the images. Even if they don't show on desktop or mobile they will still be loaded into the page. Most use custom CSS if the default from the old layout engine or the setup from the new fluid engine doesn't work. Many post questions like this in the forum so you can search or ask for specific edits and often you'll get responses with code like I put up above!

  3. No but you can make edits to the font sizes using CSS. Paste this into your custom CSS area.

      //keep adding new selectors and delete 
      //what i have here if you need and copy 
      //and paste with different max-width 
      //for different screen sizes.
    @media only screen and (max-width: 640px) {
      h1 {
        font-size: 28px; //change to your size
      }
      h2 {
        font-size: 24px;//change to your size
      }
      p {
        font-size: 16px;//change to your size
      }
    
    }

    Are there other mobile specific changes you are trying to do besides fonts or is this a completely different page layout basically? One strategy could be to hide and show certain sections on mobile but that's not usually great for SEO because you'll have some identical content on the same page.

  4. In each individual page header code injection you can add this, this might be easiest but is harder to track down issues since you have to go digging into each page.

    <style>
      #header {
        display: none;
      {
    </style>

     

    If you want to use the Custom CSS you need each page collection ID like this. Easier to manage in one place but does require a plugin and some more care when making changes and adding new pages to remove the header.

    //replace with your collection IDs and separate each one with a comma like below.
    #collectionXXXXXXPageOne, #collectionXXXXXXPageTwo { 
      #header {
        display: none;
      }
    }

    You can get the collection IDs using the Squarespace ID Finder chrome extension. https://chromewebstore.google.com/detail/squarespace-id-finder/igjamfnifnkmecjidfbdipieoaeghcff

  5. Question 1:

    try this custom CSS, it should just make them invisible to the users. 
     

    .user-items-list-banner-slideshow {
      .desktop-arrows, .mobile-arrows {
        opacity: 0;
      }
    }

    Question 2:

    this should make all the home page stuff white. if not leave the code and let me know!

    .homepage {
      .header-title-logo img {
        filter: invert();
      }
      .header-nav-wrapper a, .sqs-cart-quantity {
        color: white;
      }
      .header-actions .icon--fill svg {
        fill: white !important;
        stroke: white !important;
      }
      .burger-inner > div {
        background-color: white !important;
      }
    }
  6. @colinttierney So to do this dynamically you will need to leave your original navigation there and adjust it with CSS. It's definitely doable, there's even a few prebuilt paid templates out there that do it like this one https://studiomesa.co/tandem but if you already have your whole site built out that doesn't really work as well.

    I'd be happy to help but this is a little longer of a project than just a few lines of CSS code. I'll DM you.

  7. It's working fine for me, it just reloads the content within the iframe as I'm assuming you're wanting it to do. The navbar and footer stays the same. Are you trying this inside the SS editor possibly? I wonder if that's why it's not working right, sometimes things get a little weird in the editor so I usually try a live page. You could also have an old version of something cached so maybe trying an incognito or private window will help see what it's really doing. As far as actually doing anything to whats in that widget, the only people who can really affect it will be Mindbody. Their code places this whole thing inside an iframe and that can't really be touched by custom code we would write.

  8. .header-menu .header-menu-cta, .header-actions-action {
      a.btn {
        background-color: transparent !important;
        background-image: url(https://images.squarespace-cdn.com/content/655760ca5ce91354ff938b5a/71a5c7bc-6aac-454f-979c-b857c95f03f1/Discover+CLUB.png) !important;
        background-size: contain !important;
        background-position: center;
        background-repeat: no-repeat !important
      }
    }

    Try and replace with this. Added some more specificity and there was something overriding your background-image part so added !important to that.

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