Jump to content

ShortAngryViking

Circle Member
  • Posts

    155
  • Joined

  • Last visited

Reputation Activity

  1. Like
    ShortAngryViking got a reaction from paul2009 in Dropdown Search Bar?   
    thanks @paul2009
  2. Like
    ShortAngryViking reacted to paul2009 in Dropdown Search Bar?   
    This is a Shopify site 🙂. 
    Personally, I don't recommend promoting the search feature in your header at the moment as the search feature on Squarespace is currently unreliable (see Site Search is broken in 7.1) and may give false negatives.
  3. Thanks
    ShortAngryViking reacted to tuanphan in How Can I Add a Page Section Above the Header Navigation   
    You can add a Not Linked Page > Design a section (Keep the page url slug: /above-header
    Next, install Section Loader Plugin (affiliate link) or this link (non-affiliate link)
    Next, add this code to bottom of Code Injection > Footer
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function(){ setTimeout( function() { $('div.wm-load-container').insertBefore('header#header'); }, 2000); }); </script> Next, add this code to Website > Website Tools (under Not Linked) > Custom CSS
    /* Add sticky header */ header#header { position: sticky !important; position: -webkit-sticky !important; top: 0; } /* section above header */ .wm-load-container>section:first-child { display: none; } .wm-load-container .content-wrapper { padding: 0 !important; max-width: 100% !important; }  
  4. Like
    ShortAngryViking reacted to jason_sparky in Image formatting to improve page speed   
    There appears to be no way to contact Squarespace and raise this concern. Very disappointing. Since the latest Google Core update, loading speed (including image file size) has been an extremely high priority and has severely reduced our traffic. Why on earth isn't SS prioritising this? 
  5. Like
    ShortAngryViking reacted to tuanphan in how to add dots on summary block slider   
    You mean List Carousel on the page?
  6. Thanks
    ShortAngryViking reacted to tuanphan in Search Results Page - Customise "Search" title + "Type to search" text   
    Add to Last Line in Code Injection > Footer
    <script> $(document).ready(function(){ $('.header-display-desktop div.search-icon').insertBefore('nav>div:first-child'); }); </script>
  7. Like
    ShortAngryViking got a reaction from haleyisabelle in Dropdown Search Bar?   
    also trying to figure this out
     
  8. Like
    ShortAngryViking reacted to haleyisabelle in Dropdown Search Bar?   
    I'm dying to figure out how the designer of this site added a dropdown search bar on click (desktop and mobile). I'd love the code, but I'd be fine being linked to a plugin, I just can't find one!
    https://www.solauthentica.com/
  9. Like
    ShortAngryViking reacted to tuanphan in How Can I Add a Page Section Above the Header Navigation   
    Hi,
    This is possible, I solved 3 cases last week.
    You want to do this on homepage only or all pages? We can give exact approach easier.
  10. Like
  11. Like
    ShortAngryViking reacted to tuanphan in Form input fields - change icons colour   
    Hi,
    It looks like you figured it out. Can you share solution for other members?
  12. Like
    ShortAngryViking reacted to tuanphan in Search Results Page - Customise "Search" title + "Type to search" text   
    Hi,
    #1. Can you share site url?
    #2. Add this to Website > Website Tools > Custom CSS. If it doesn't work, please share site url, we can help easier
    .sqs-search-container input::placeholder, .sqs-search-container input { color: darkgrey !important; }  
  13. Thanks
    ShortAngryViking reacted to melody495 in How to make blog posts in the blog page layout looks like in a card style?   
    For some reason I can't right click within your website so can't check.... Try this in your custom code?
    .blog-basic-grid--container { border: 1px solid red; // change to colour you want padding: 2rem; // change to how much spacing you want all around padding-bottom: 2.5rem; // change to how much spacing you want at the bottom }  
  14. Like
  15. Like
    ShortAngryViking reacted to tuanphan in Blog Pagination Color & Underline   
    It looks like you solved color. With underline, add this to Design > Custom CSS
    /* blog pagination underline */ .item-pagination[data-collection-type^="blog"] .item-pagination-title, .item-pagination[data-collection-type^="blog"] .item-pagination-title { border-bottom: 1px solid currentColor; }  
  16. Like
    ShortAngryViking reacted to DPruitt in Styling of basic blog grid   
    Try this:
     
     
    Blog Title:
     
    .blog-title { font-family: Helvetica Neue !important; font-size: 2rem !important; text-transform: none !important; font-weight: 500 !important; letter-spacing: 0rem !important; margin-bottom: 0.8em; margin-top: 0.8em !important; padding-bottom: 0.5rem !important; padding-top: 0.5rem !important;}  
    Blog Excerpt:
    .blog-excerpt p {font-size: 1rem !important;} .blog-excerpt {padding-bottom: 0.8rem !important;}  
    Read More Link:
    .blog-more-link { font-family: 'aktiv-grotesk-extended' !important; font-weight: 500 !important; font-size: 1rem !important; font-style: normal !important; text-transform: uppercase !important;}  
  17. Like
    ShortAngryViking reacted to clementkao in Consistent Blog Post Spacing Irrespective of Title/Description   
    Hi there, I had a question about the spacing and alignment of blog items within the blog collection.
    On my website https://www.productteacher.com/articles, each of the blog items is spaced oddly (see attached image). This happens because each blog item has a different title length and description length.
    While the spacing between the bottom of an item and the top of the item below is consistent (60px vertical spacing), the overall effect looks messy and disorganized.
    Is there a way I can get each row of blog items to be top-aligned? I've also attached the format settings for the blog section ("Edit Section").
    I tried searching through the forum and I don't believe I found a solution on this yet.
    Thanks so much!
     




  18. Love
    ShortAngryViking reacted to Ziggy in Consistent Blog Post Spacing Irrespective of Title/Description   
    The reason that you have the blog thumbnails staggered is that you have the layout set to Masonry, that is what that layout is supposed to look like, if you want them to be in an even grid, then change the layout to Grid Blog.
  19. Like
    ShortAngryViking reacted to clementkao in Consistent Blog Post Spacing Irrespective of Title/Description   
    Hi Ziggy, this was perfect, thank you! Confirmed that Grid Blog lets me provide an even grid; I hadn't realized that Masonry had those drawbacks.
    I really appreciate your help!
  20. Love
    ShortAngryViking reacted to Beyondspace in How to have phone number field in one box   
    Sure, it is a good idea to start. You can get reference here: HTML input type="tel" (w3schools.com)
    We can create a text field and then use js to change this field in to a phone number input
    Hope it makes sense
  21. Like
    ShortAngryViking reacted to creedon in Sticky block on post   
    Just to expound a bit. There are two types of page section editors in v7.1. Classic Editor and Fluid Editor. Most folks who are recently editing their site are getting Fluid Editor sections. If you are a Circle Member your options are more flexible, currently.
    Use your Circle power and check out your options.
  22. Like
    ShortAngryViking reacted to Suzann in Unable to change the font size on blog post titles   
    Thank you! Still working on it, and am grateful for your replies. I did find - and ShortAngryViking - that when I changed from Chrome to Microsoft Edge, I was able to change that font size. Let me know if this works for you.
  23. Like
    ShortAngryViking reacted to Suzann in Unable to change the font size on blog post titles   
    Oops - ShortAngryViking - in reply to your first answer, yes, I did that but the edits were unresponsive. I'm glad you were able to fix your issue. My problem may have been that Chrome on my computer (and my computer is old) was not able to respond, but when I tried it on Edge, it worked.
  24. Like
    ShortAngryViking reacted to Christel_NZ in Alternatives to Stripe   
    Have you managed to resolve the issue? I agree, without Stripe, it is hard to run an online business in NZ. What's worked for me has been to stop feeding the automatic process at the bottom - the more information I gave them, the more I was going round in circles. The solution has been to just disagree with their decision and ask for management to review the decision.
  25. Like
    ShortAngryViking got a reaction from Christel_NZ in Alternatives to Stripe   
    Glad you got that sorted we are in the Waikato and have the same issue. Having Blades is a big no no....I was helping a Dog Groomer to get her site up and Stripe threw the dummy. We're still waiting for a response so in the meantime heading over to Shopify where at least we can get payment options for NZL. 
    I did manage to get Afterpay on her Squarespace site working flawlessly but after the last abortion (sorry Update) it turned the majority of her site unusable so a complete rebuild at my expense was the only option for her. I do have a client "One" a Single Client that has success with paypal here DownUnder, with Zip and Afterpay taking off again that is my focus. I am waiting for TWL to get back to me as their designer mentioned at the pub there may be an option to have Warehouse Credit Card for online sales in the coming months.
×
×
  • 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.