Jump to content

christyprice

Circle Member
  • Posts

    973
  • Joined

  • Last visited

  • Days Won

    8

Reputation Activity

  1. Like
    christyprice got a reaction from couch_potato in New Auto content blocks/lists equal height?   
    Just wanted to update this post - Squarespace rolled out an update and you no longer need a code solution here. In the auto layout (list) section, just go to Edit Content > Design > Size & Space. Scroll to the bottom and there is now the option to make each item the same height under Position:

  2. Like
    christyprice got a reaction from KATma in New Auto content blocks/lists equal height?   
    Just wanted to update this post - Squarespace rolled out an update and you no longer need a code solution here. In the auto layout (list) section, just go to Edit Content > Design > Size & Space. Scroll to the bottom and there is now the option to make each item the same height under Position:

  3. Love
    christyprice got a reaction from Photograffix in New Auto content blocks/lists equal height?   
    Just wanted to update this post - Squarespace rolled out an update and you no longer need a code solution here. In the auto layout (list) section, just go to Edit Content > Design > Size & Space. Scroll to the bottom and there is now the option to make each item the same height under Position:

  4. Like
    christyprice got a reaction from webbroi in Copy/paste full website help   
    Unfortunately, there's not a way within Squarespace to duplicate just one page from one site to another. 
    You can either rebuild the page on the new site OR you can use a third party (paid) solution like https://www.squarewebsites.org/squarespacewebsites-tools-extension-pro that allows you to move pages between sites.
  5. Like
    christyprice got a reaction from LaurieG in Search Bar Not Working   
    I've been on the platform for about 3 years and in my experience search has never worked well or as expected. I hope that it's on the roadmap to fix.
  6. Like
    christyprice got a reaction from tuanphan in Mobile index page titles   
    Hi @Leeloo77, try adding this to Custom CSS:
    @media screen and (max-width: 767px) { .project-title { font-size: 12px !important; } } You can change up the font size to be bigger or smaller. And you can also change the max-width of the screen if needed.
  7. Like
    christyprice reacted to Leeloo77 in Mobile index page titles   
    @christyprice Thank you so much this worked perfectly 🙂
  8. Like
    christyprice reacted to ghostplugins in Signed up for Age Verification Pop Up, Is It Out of Business?! Please Advise!!   
    Thanks for sharing @christyprice! 👻 ❤️
  9. Love
    christyprice got a reaction from ghostplugins in Signed up for Age Verification Pop Up, Is It Out of Business?! Please Advise!!   
    Not familiar with that one, but typically you can get in touch with your credit card and stop the recurring charge.
     
    If you're looking for another option, @ghostplugins has a great Age Verification Pop Up that's a one-time fee $30 USD: https://www.ghostplugins.com/products/age-verification-pop-up
  10. Like
    christyprice reacted to happycoffeedesigns in Center Sale Price in Summary Block   
    Thank you!!! That worked! 😄

  11. Thanks
    christyprice got a reaction from happycoffeedesigns in Center Sale Price in Summary Block   
    Try adding this to Custom CSS:
    .sqs-block-summary-v2 .product-scarcity { text-align: center !important; }  
  12. Like
    christyprice reacted to madzie in Summary Block is not Appearing When adding to the Blog Post   
    Hi, my issue is resolved now. Actually, the blog is on draft that is why it is not appearing. I learned that, publish it first then when I add summary block, that blog will appear. Thank you for reaching out.
  13. Thanks
    christyprice got a reaction from Yvan in Reduce space between header and main page   
    Hi @Yvan. You may have already tried this, but if you click the pencil icon on the right, you can change the Section Height and/or Content Alignment. 
    For Section Height, you can click the three dots to the right and set it to the minimum (10). Then if you need space under your content, you can add a spacer bar underneath.
    For Content Alignment, you can choose to align the content to the top of the section.
    If you've already tried that, let us know and share a link to your site so someone can help with custom code for that section.
  14. Like
    christyprice reacted to Skovbo in Trouble with line breaking of site header on mobile   
    Thank you so much 🙂
  15. Like
    christyprice got a reaction from Skovbo in Trouble with line breaking of site header on mobile   
    Hi @Skovbo, this looks to be a line height setting. If you go into Site Styles: Fonts: Headings and increase Line Height this should take care of that overlap. 
    Or you can target it with some Custom CSS for mobile screens:
    @media screen and (max-width: 767px) { h1 { line-height: .9 !important; } }  
  16. Like
    christyprice reacted to meredithpullara in Custom Image on Mobile Site   
    Thank you so much, Christy!! 🙂
     
  17. Like
    christyprice got a reaction from tuanphan in Footer Block Centering in Farro Template   
    Try this in Custom CSS
    /* center summary block */ .sqs-block-summary-v2 .summary-item-list { display:flex; flex-wrap:wrap; justify-content:center; }  
  18. Like
    christyprice got a reaction from EB80 in Padding and spaceing problem   
    Hi! You'll need to set up and share a site-wide password for us to be able to see your site and help: 
    https://support.squarespace.com/hc/en-us/articles/205815528-Site-wide-passwords
  19. Like
    christyprice got a reaction from Tiny_Coast in Different Banner Image on Mobile   
    ETA: If you are on the newer Squarespace 7.1, this post has a walkthrough: How to Show a Different Banner Image on Mobile in Squarespace
     
    Hi @Joeyearthly,
    If you are using an index page, I have a different workaround that I like a bit better, since you can make whole area specific for mobile instead of just the banner image. I create two "sub-pages" at the top of the index page, one for desktop view (with the URL slug home-banner) and one for mobile view (with the URL slug home-banner-mobile). Then I add the following code to Custom CSS. (Note that if you want to edit the mobile from your desktop, you'll need to briefly comment out the code so you can see that page on desktop.)
    /* show home page block dependent on screen size */ @media only screen and (max-width: 780px) { #home-banner { display: none; } } @media only screen and (min-width: 781px) { #home-banner-mobile { display: none; } }  
  20. Like
    christyprice reacted to paul2009 in Getting errors after installing thrid-party code for cookie banner   
    These are Squarespace warnings. They are not related to OneTrust and can be ignored.
  21. Love
    christyprice got a reaction from m_knittel in Avenue Shop - Larger Text for Product List + Prices   
    Hi @kalyquarles - thanks for the access! Try pasting this into Design> Custom CSS:
    #productList .product .product-title { font-size: 18px !important; } #productList .product .product-price { font-size: 16px !important; } You can change the 18px and 16px to adjust the sizing as needed.
  22. Love
    christyprice got a reaction from BellamyTree in Accordion Block: Dos and Don’ts   
    LOVE the new accordion block. @ghostpluginshas some great free Custom CSS for it too.
    I did a quick video walkthrough of styling options here (there are some that are kinda hidden, like the description width): https://christyprice.com/blog/how-to-add-accordion-squarespace
  23. Like
    christyprice reacted to iJizzy1 in Disable Announcement Bar On Single Page   
    It's working, thank you very much ! 🙂
  24. Like
    christyprice got a reaction from daniellenoakes in Disable Announcement Bar On Single Page   
    @iJizzy1 are you using Squarespace 7.1? Try adding this to Custom CSS:
    body:not(.collection-type-products) .sqs-announcement-bar-dropzone { display:none; }
  25. Like
    christyprice got a reaction from ilseS in Accordion Block: Dos and Don’ts   
    LOVE the new accordion block. @ghostpluginshas some great free Custom CSS for it too.
    I did a quick video walkthrough of styling options here (there are some that are kinda hidden, like the description width): https://christyprice.com/blog/how-to-add-accordion-squarespace
×
×
  • 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.