Jump to content

nick_sh

Circle Member
  • Posts

    106
  • Joined

  • Last visited

Reputation Activity

  1. Like
    nick_sh got a reaction from ClaireHops in How to place an image block so that it sits in the right place   
    @ClaireHops Great! Please mark as correct so others can benefit from the answer too — thanks.
  2. Like
    nick_sh reacted to WCS in Why can't I hide images on Mobile only using the CSS I'm adding?   
    @graphicabyss  Is it removing the image in the mobile preview, but not on your phone? If so, then you may have to adjust the max width to 720. I had to do this for a client recently.
    @media screen and (max-width: 720px) {
    #block-yui_3_17_2_1_1689763110049_14549 {
    display: none !important;
    }
    }
  3. Like
    nick_sh got a reaction from tuanphan in Author's profile photo cuts   
    .blog-item-author-profile-wrapper .author-avatar-image { top: 0 !important; left: 0 !important; }  
  4. Love
    nick_sh got a reaction from DoriDee in Image Map - Links not working   
    I think it's not responsive, so when your image is resized it breaks. Try this one: https://imagemapper.pageballoon.com/
  5. Thanks
    nick_sh got a reaction from TheITGuru in Added 'MENU' label beside the burger icon. Need it to change color when opened.   
    .header--menu-open .header .header-burger:after { color: ... }  
  6. Like
    nick_sh got a reaction from NoahSnowdayDesign in Added 'MENU' label beside the burger icon. Need it to change color when opened.   
    .header--menu-open .header .header-burger:after { color: ... }  
  7. Love
    nick_sh got a reaction from Katberg in How to remove Portfolio pages click through   
    @Katberg try adding this to Code Injection
     
    <script> addEventListener("DOMContentLoaded", (event) => { document.querySelectorAll('section[data-section-id="65c38c2f3d8bf72234d2ac79"] a').forEach(link => { link.addEventListener('click', e => { e.preventDefault(); }) }); }); </script>
  8. Like
    nick_sh got a reaction from NP3000 in SVG logo in footer - is it possible?   
    You need to open .svg file in any text editor, copy the code and insert into Code Block
  9. Like
    nick_sh got a reaction from creedon in Sound Not Playing in Squarespace   
    If you are on trial, file links might not work properly causing the issue. 
  10. Like
    nick_sh got a reaction from tuanphan in Video gallery thumbnail – overlay and show title on hover   
    Opaque correct selector seems to be: 
    .sqs-video-wrapper .sqs-video-overlay .sqs-video-opaque  
    Title: 
    .image-slide-title { ...your styles... overflow: visible !important; margin-top: 0 !important; }  
  11. Like
    nick_sh got a reaction from tuanphan in I am trying to create a different header title font, yet for some reason, it worked and then stopped   
    You need to target #site-title: 
    #site-title { font-family: 'adonis-web' ; }  
  12. Like
    nick_sh got a reaction from tuanphan in Repositioning Excerpt Item in List Summary Block   
    Basic idea would be like this, you can further play with the styles. 
    .fe-block-53a098b9fb8dd2261803 { counter-reset: section; } .fe-block-53a098b9fb8dd2261803 .summary-item { display: flex; } .fe-block-53a098b9fb8dd2261803 .summary-item:before { counter-increment: section; content: counter(section) "."; line-height: 1; color: var(--headingLargeColor); font-family: var(--heading-font-font-family); font-style: var(--heading-font-font-style); font-weight: var(--heading-font-font-weight); font-size: 22px; margin-right: 12px; position: relative; top: -4px; }  
  13. Like
    nick_sh got a reaction from tuanphan in How do I get the URL from an image in the asset library?   
    Might be easier to upload to Custom CSS.
    But if not, in Chrome, right click on the image in asset library and select "Inspect". Dev toll will open and you will see something like image overlay. Next to you will see an <img> where  you can copy the src:

  14. Like
    nick_sh got a reaction from Barndi in Blog Post Title   
    Website → Website tools → Custom CSS
  15. Like
    nick_sh reacted to jpeter in Is targeting section id's on SS 7.1 not working?   
    @sunjo Remove #siteWrapper.site-wrapper from your selector. The new selector should be:
    section[data-section-id="65c47f89c55103377481a7fa"] .sqs-button-element--tertiary{ }  
  16. Like
    nick_sh reacted to Ziggy in Overlapping elements from one section to another   
    You won't have z-index issues if you place the block in the second section and use a negative top margin...
  17. Like
    nick_sh reacted to howharvey in Intercept Form with Required Fields   
    @nick_sh Thank you so much, that was so helpful, defining the variable after the function threw me off but you've cleared it up and I've got it working now. Thanks.
    @sorca_marian I had no idea you could use a console like that, thank you for sharing.
  18. Like
    nick_sh got a reaction from sorca_marian in Intercept Form with Required Fields   
    var input = document.querySelector("form input"); you need to select the input first, you can also select by name e.g. input[name="YOURNAME"]
    Then pass in the function like so 
    changeValue(input, "Set value here"); Full code (add to footer or wrap in domcontentloaded):
    function changeValue(input,value){ var nativeInputValueSetter = Object.getOwnPropertyDescriptor( window.HTMLInputElement.prototype, "value" ).set; nativeInputValueSetter.call(input, value); var inputEvent = new Event("input", { bubbles: true }); input.dispatchEvent(inputEvent); } var input = document.querySelector("form input"); changeValue(input, "Set value here");  
  19. Like
    nick_sh got a reaction from Beyondspace in Convert Squarespace timestamps to real date / time?   
    I'm trying to make some customizations to the events page, but the timestamps Squarespace provides are somehow strange: 
    so e.g. this is
    startDate: 1657643425538 If I do 
     
    var date1 = new Date(1657643425538).toString() startDate.toString(date1) // Tue Jul 12 2022 19:30:25   
    But the correct date set for the event is Friday 23, 2002, 9 AM.
     
    So what am I doing wrong? or what would be the best way to transform timestamp into correct date / time?
     
     
  20. Like
    nick_sh got a reaction from sorca_marian in Intercept Form with Required Fields   
    Squarespace seems to be using new form functionality now, and any form values that are set with Javascript e.g. 
    document.querySelector('.text:first-child input').value = myvalue are now being reset on submit.
     
    Is there any way to set the form values with javascript now? 
  21. Thanks
    nick_sh got a reaction from creedon in Intercept Form with Required Fields   
    function changeValue(input,value){ var nativeInputValueSetter = Object.getOwnPropertyDescriptor( window.HTMLInputElement.prototype, "value" ).set; nativeInputValueSetter.call(input, value); var inputEvent = new Event("input", { bubbles: true }); input.dispatchEvent(inputEvent); } ^ this one worked for me, thanks!
     
    For textarea, use
     window.HTMLTextAreaElement.prototype,   
  22. Like
    nick_sh reacted to creedon in Intercept Form with Required Fields   
    SS has indeed updated the form block and so custom code has broken.
    SS is using React for their forms now.
    I'm am not familiar with React but I found this possible rough gem.
    function changeValue(input,value){ var nativeInputValueSetter = Object.getOwnPropertyDescriptor( window.HTMLInputElement.prototype, "value" ).set; nativeInputValueSetter.call(input, value); var inputEvent = new Event("input", { bubbles: true }); input.dispatchEvent(inputEvent); } Source
    Basically React is swallowing up programmatic changes to inputs and this code may help with that.
    I did a quick test and it seems to work but I make no promises if it will work for you or continue to work.
    Let us know how it goes.
    @sorca_marian
  23. Like
    nick_sh got a reaction from FabiSantiago in how can i shift from Fluid Engine to Classic Editor?   
    Hello, I find Fluid Engine very confusing, so I'd like to disable it for now. Although I don't see how to do it? 
    Circle Members can disable that from Circle Labs page, but how to do it for a regular user? 
  24. Like
    nick_sh got a reaction from Turbine in how can i shift from Fluid Engine to Classic Editor?   
    Hello, I find Fluid Engine very confusing, so I'd like to disable it for now. Although I don't see how to do it? 
    Circle Members can disable that from Circle Labs page, but how to do it for a regular user? 
  25. Like
    nick_sh got a reaction from Hali in how can i shift from Fluid Engine to Classic Editor?   
    Hello, I find Fluid Engine very confusing, so I'd like to disable it for now. Although I don't see how to do it? 
    Circle Members can disable that from Circle Labs page, but how to do it for a regular user? 
×
×
  • 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.