Jump to content

dnmddy

Circle Member
  • Posts

    157
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Thanks
    dnmddy reacted to tuanphan in mobile: center second row of gallery grid?   
    Try this CSS code to Website > Website Tools > Custom CSS
    @media screen and (max-width:767px) { div#block-f4af4926eecb45ea1960 .sqs-gallery { display: flex; justify-content: center; flex-wrap: wrap; } div#block-f4af4926eecb45ea1960 .slide { width: 33.3333% !important; } }  
  2. Like
    dnmddy reacted to sorca_marian in Can mailto new tab send to gmail?   
    I think it opens your default Mailing software
  3. Love
    dnmddy got a reaction from sorca_marian in Header actions flex design   
    Lovely. Perfect. Thank you @sorca_marian!
  4. Love
    dnmddy reacted to sorca_marian in Header actions flex design   
    Updated
    .header-display-desktop .header-title-nav-wrapper .header-nav-list { display: flex; flex-direction : column; align-items: baseline; } .header-display-desktop .header-nav { flex: 0; } .header-display-desktop .header-nav, .header-display-desktop .header-actions--right { flex-direction : column; width: auto; } .header-display-desktop .header-actions-action--social { order : -2; } .header-display-desktop .header-actions-action--cta { order : -1; margin-top : 5px; margin-bottom : 5px; }  

  5. Thanks
    dnmddy reacted to sorca_marian in Header actions flex design   
    Like this?
     
    .header-display-desktop .header-title-nav-wrapper .header-nav-list { display: flex; flex-direction : column; align-items: baseline; } .header-display-desktop .header-actions--right { flex-direction : column; width: auto; } .header-display-desktop .header-actions-action--social { order : -2; } .header-display-desktop .header-actions-action--cta { order : -1; margin-top : 5px; margin-bottom : 5px; }  

  6. Like
    dnmddy reacted to iamdavehart in Reorder Navigation Social Icons Last   
    Add this to your site css (this is for SQS 7.1)
    .header-actions-action.header-actions-action--cta { order: -1; } based on this layout

  7. Love
    dnmddy reacted to Teucer90 in Rearrange in alphabetical order   
    This code worked for me to alphabetize blog posts based on title name:
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ if( $('.blog-item').length != 0 ){ var categories = []; $('.blog-item').each(function () { categories.push({ categoryName: $(this).find('.blog-title').html(), listItem: $(this) }); }); categories.sort(function(a,b) { var c = a.categoryName.toUpperCase(); var d = b.categoryName.toUpperCase(); return (c > d) ? 1 : ((d > c) ? -1 : 0); }); $.each(categories, function(index, object){ object.listItem.appendTo(object.listItem.parent()); }); } }); </script> The only issue is that the pagination links at the bottom won't be alphabetized as well, so I had to hide them. If anyone has solved this problem I'd love to see that solution
  8. Like
    dnmddy got a reaction from melody495 in Typewriter & delete effect? TypeIt or something similar   
    removing this resolved it
    #page .section-background {background: white;} #page section * {color: black !important;} #page .content { width: 100%; } Is there a way to change how long it pauses when it finished, before repeating?
  9. Like
    dnmddy got a reaction from christyprice in Accordion Block: Dos and Don’ts   
    it's so frustrating that you cant paste in text with basic styling like bold or hyperlinked. The block allows for this to be applied, so why can't we paste in the text with it? It's extremely time consuming to have to reformat everything
  10. Like
    dnmddy reacted to thatchrismiller in Adding Events to Email Campaigns   
    I'm with you on this. We really, really want to be able to send out a weekly newsletter featuring upcoming events. If we were able to choose events like you can choose a blog post, this would be super simple. What makes this more confusing is that the Squarespace Event Lists have their own RSS feed URL, so it shouldn't be any different than pulling a blog post. 
  11. Like
    dnmddy reacted to mirgart in Help with Changing color of Scrolling   
    Is there a code to have multiple colors scrolling? Would you use nth-child in the code? 
    I have three items listed in my marquee and I'd love to have each item be a different color while it's scrolling. Could you help me with that, @tuanphan?
  12. Like
    dnmddy reacted to Beyondspace in Change mobile logo when menu is open   
    Try adding to Home > Design > Custom Css
    .header--menu-open .header-mobile-logo img { visibility: hidden; } .header--menu-open .header-mobile-logo:after { content: ''; width: 100%; height: 100%; background-image: url('https://static1.squarespace.com/static/61aa4ec70c8cf2221705ac29/t/61ae6a7643eebf085e1b0280/1638820471169/sonderself_secondary_cream_rgb_1080px%40300ppi.png') !important; background-size: contain; background-repeat: no-repeat; background-position: center; visibility: visible; position: absolute; left: 0; } Let me know how it works on your site
    Press 👍 or mark this answer as solution to help another one too
  13. Like
    dnmddy got a reaction from madi-od in Typewriter & delete effect? TypeIt or something similar   
    This broke the full width background on my site and made it fixed, but the the text part works so well...!
  14. Like
    dnmddy got a reaction from tuanphan in How to Make Summary Blocks the same height   
    Thank you @tuanphan that works perfectly 
  15. Thanks
    dnmddy reacted to tuanphan in How to Make Summary Blocks the same height   
    Try this new code
    <script> $("div#block-5f739344ad87578c7e22 .summary-item").click(function(){ window.location=$(this).find(".summary-title-link").attr("href"); return false; }); </script> <style> div#block-5f739344ad87578c7e22 .summary-item:hover { cursor: pointer; } </style>  
  16. Thanks
    dnmddy reacted to tuanphan in How to Make Summary Blocks the same height   
    You can remove the code. Then we will check it again
  17. Thanks
    dnmddy reacted to tuanphan in How to Make Summary Blocks the same height   
    Add to Last Line in Code Injection > Footer
    <script> $("div#block-5f739344ad87578c7e22 .summary-item").click(function(){ window.location=$(this).find("a").attr("href"); return false; }); </script> <style> div#block-5f739344ad87578c7e22 .summary-item:hover { cursor: pointer; } </style>  
  18. Thanks
    dnmddy reacted to tuanphan in How to Make Summary Blocks the same height   
    With Personal Plan, you can enable read more, then I will give code to make link cover whole box + make read more transparent
    With Business Plan, let me know, I will give code to make title link cover whole box
  19. Thanks
    dnmddy reacted to tuanphan in How to Make Summary Blocks the same height   
    Use this code
    div#page-section-6286620aa09a760a1808b080 .summary-excerpt.summary-excerpt-only { position: absolute; bottom: 0; }  
  20. Love
    dnmddy reacted to paul2009 in portfolio item limit   
    The limit is now 60 sub-pages. 🙂
  21. Like
    dnmddy reacted to fallingup in Adding Events to Email Campaigns   
    It's really disappointing that we can't add events to our email campaigns.  Anyone found a work around that doesn't require retyping or copying and pasting everything by hand before I give up? 
  22. Like
    dnmddy reacted to paul2009 in Drop down menu arrow   
    Try adding this to Settings > Advanced > Code Injection > Header:
    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"> And add this to Design > Custom CSS:
    .header-nav-item.header-nav-item--folder a.header-nav-folder-title:after {   font-family: FontAwesome;   content: "\f107";   padding-left: 4px; } You should see this:

     
    Let me know how you get on.
    -Paul
  23. Like
    dnmddy reacted to kate2 in portfolio item limit   
    I also want to know - are there plans to remove the portfolio sub-page limit? 40 is not enough!
  24. Thanks
    dnmddy reacted to creedon in Looking for some code to remove or hide the content page of a blog in squarespace   
    Please see Blog Page List Post Image URL to Source URL.
    Let us know how it goes.
  25. Like
    dnmddy reacted to sethhoffman in Link image in Summary Block to Source URL, in new window   
    Hey @creedon - Thanks for all this guidance. How would you accomplish this in 7.1 instead of 7.0? Thanks in advance for your help! 🙂
×
×
  • 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.