Jump to content

rwp

Circle Member
  • Posts

    1,008
  • Joined

  • Last visited

  • Days Won

    14

Reputation Activity

  1. Like
    rwp reacted to kevin310 in Product page- change code block position   
    Bingo! Thanks again rwp!!
  2. Like
    rwp reacted to Sarahpsilva in Making Instagram on mobile show 3 images per row   
    Worked like a charm! Thank you @rwp
  3. Like
    rwp got a reaction from Sarahpsilva in Making Instagram on mobile show 3 images per row   
    @Sarahpsilva
    @media screen and (max-width:640px) { #block-yui_3_17_2_1_1593024627138_17518 .sqs-gallery-design-grid-slide { width: 33.33% !important; } }  
  4. Like
    rwp got a reaction from tuanphan in Making Instagram on mobile show 3 images per row   
    @Sarahpsilva
    @media screen and (max-width:640px) { #block-yui_3_17_2_1_1593024627138_17518 .sqs-gallery-design-grid-slide { width: 33.33% !important; } }  
  5. Like
    rwp reacted to nsdoyle in Scrolling text over a fixed background within a section   
    Can't believe it was that easy. That did the job marvelously. Thank you!
  6. Love
    rwp got a reaction from k3ats in Inverted Cursor Hover Effect   
    Try using copy and pasting all of this code into the footer code injection area (directions in my signature on how to do that).
    https://jsfiddle.net/pelletr1/x6sqo4nc/20/
  7. Like
    rwp reacted to k3ats in Inverted Cursor Hover Effect   
    THIS IS AMAZINGGGG! It totally works! 
    For anyone looking to add this you have to add it here on your site (as outlined in rwp's notes):  Settings -> Advanced -> Code Injection
    The only thing I changed was the font (see attached screen shot). The new injected code changed my body copy font to "Neutron" and so I changed it back to "Aktiv Grotesk" and tweaked the font weight, line height, etc. in the injected code. 

  8. Like
    rwp got a reaction from annie_mwm in Change color cart button   
    #collection-5e6fc99f4c83170df780908e .Site.loaded .Cart { filter: invert(1); }  
  9. Like
    rwp reacted to tuanphan in Letter-spacing issue on mobile (Fulton)   
    I guess problem on iPhone/Safari.
  10. Like
    rwp reacted to Vanec in Custom CSS to center Summary Block is juuust off center   
    @rwp You're right, they both work! I had deleted the old code which was the problem. Thanks!
  11. Like
    rwp got a reaction from tuanphan in How Do I Remove Animation From One Page Only?   
    Does this work?
    [data-section-id="5ea10d0c31650d63e22d108a"] .slideIn { opacity: 1 !important; transform: none !important; } [data-section-id="5ea10d0c31650d63e22d108a"] .preSlide { transform: none !important; transition-property: unset !important;; }  
  12. Like
    rwp reacted to BottleRocket1 in How to remove mystery white space on mobile   
    @rwp Thanks so much, you are a legend!!! 👍
  13. Like
    rwp got a reaction from lizayala1211 in How do I create a line break in my site title?   
    So, we can do this, but I need to know what you want the menu to do when it becomes too long for the available space.
    Do you want it to go above the logo, or do you want it to start stacking vertically on the right?
  14. Like
    rwp reacted to cvanuch in Disable Fade In with Navigation Bar when Scrolling   
    @rwp Thanks, worked perfectly!
  15. Like
    rwp got a reaction from Elzburg in How To Install + Dropdown Accordion in a Product Description   
    OHHHH. I think I see the issue.
    You might have put some of the CSS in the code injection block.
    So delete both codes from above replace with this (code injection)
    <script> window.Squarespace.onInitialize(Y, function() { $('.ProductItem-additional .markdown-block').insertAfter('.ProductItem-details-excerpt'); $('.markdown-block .sqs-block-content h3').addClass('ui-closed').css('cursor', 'pointer'); $('.markdown-block .sqs-block-content h3').nextUntil('h3').slideUp(); $('.markdown-block .sqs-block-content h3').click(function() { if ($(this).nextUntil('h3').is(':hidden')) { $('.markdown-block .sqs-block-content h3').nextUntil('h3').slideUp(); $('.markdown-block .sqs-block-content h3').removeClass('ui-open'); $('.markdown-block .sqs-block-content h3').addClass('ui-closed'); $(this).nextUntil('h3').slideDown(); $(this).toggleClass('ui-closed ui-open'); } else { $(this).nextUntil('h3').slideUp(); $(this).toggleClass('ui-closed ui-open'); } }); }); </script> Then add this to Design -> Custom CSS
    .markdown-block p { margin-left: 1em; } .markdown-block .ui-closed:before { font-family: monospace; content: "+ "; color: #2DA9C6; } .markdown-block .ui-open:before { font-family: monospace; content: "- "; color: #2DA9C6; }  
  16. Like
    rwp got a reaction from divar in How To Install + Dropdown Accordion in a Product Description   
    Put this in the header code injection
    <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>  
  17. Thanks
    rwp got a reaction from divar in How To Install + Dropdown Accordion in a Product Description   
    Add this to custom CSS
    .markdown-block { order: 5; }  
  18. Like
    rwp got a reaction from divar in How To Install + Dropdown Accordion in a Product Description   
    OHHHH. I think I see the issue.
    You might have put some of the CSS in the code injection block.
    So delete both codes from above replace with this (code injection)
    <script> window.Squarespace.onInitialize(Y, function() { $('.ProductItem-additional .markdown-block').insertAfter('.ProductItem-details-excerpt'); $('.markdown-block .sqs-block-content h3').addClass('ui-closed').css('cursor', 'pointer'); $('.markdown-block .sqs-block-content h3').nextUntil('h3').slideUp(); $('.markdown-block .sqs-block-content h3').click(function() { if ($(this).nextUntil('h3').is(':hidden')) { $('.markdown-block .sqs-block-content h3').nextUntil('h3').slideUp(); $('.markdown-block .sqs-block-content h3').removeClass('ui-open'); $('.markdown-block .sqs-block-content h3').addClass('ui-closed'); $(this).nextUntil('h3').slideDown(); $(this).toggleClass('ui-closed ui-open'); } else { $(this).nextUntil('h3').slideUp(); $(this).toggleClass('ui-closed ui-open'); } }); }); </script> Then add this to Design -> Custom CSS
    .markdown-block p { margin-left: 1em; } .markdown-block .ui-closed:before { font-family: monospace; content: "+ "; color: #2DA9C6; } .markdown-block .ui-open:before { font-family: monospace; content: "- "; color: #2DA9C6; }  
  19. Like
    rwp reacted to 81monkeys in How to change text colour for Blog comments section   
    Thanks! This has been a big help.
  20. Love
    rwp got a reaction from lizayala1211 in How do I create a line break in my site title?   
    $('h1.logo').html("<a href='/'>Jenna<br>Wortham</a>")  
  21. Like
    rwp got a reaction from angeldr in Move text or code block from "Additional Info" to "Product page description" product detail excerpt   
    $('section.ProductItem-details').html( $('section.ProductItem-additional').html() ); $('section.ProductItem-additional').html(''); This jQuery would do it, but personal accounts don't allow code injection.
  22. Like
    rwp got a reaction from tuanphan in Move text or code block from "Additional Info" to "Product page description" product detail excerpt   
    $('section.ProductItem-details').html( $('section.ProductItem-additional').html() ); $('section.ProductItem-additional').html(''); This jQuery would do it, but personal accounts don't allow code injection.
  23. Like
    rwp reacted to mayflyaway in remove footer top blocks from specific pages   
    You rock, man! I should be able to find the #collection for each page. thanks so much!!
  24. Like
    rwp got a reaction from tuanphan in How to remove mystery white space on mobile   
    @media screen and (max-width:960px) { .Index-page-content { padding-top: 120px; padding-bottom: 120px; } } @media screen and (max-width:640px) { .Index-page-content { padding-top: 60px; padding-bottom: 60px; } } This is what is causing the headings to be cut off, squarespace is shrinking the padding at a screen width of 640px
    @media screen and (max-width:640px) { .Index-page-content { padding-top: 80px !important; padding-bottom: 80px !important; } } This should fix it.
    @media screen and (max-width:960px) { #block-yui_3_17_2_1_1592315790530_4759 { display: none; } } There's a spacer in your blog page on mobile, that will hide it.
  25. Like
    rwp reacted to GabrielaS in Change logo on scroll with fixed header 7.1   
    @rwp thank you SO MUCH, it finally worked! 
×
×
  • 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.