Jump to content

adifederico

Member
  • Posts

    30
  • Joined

  • Last visited

Reputation Activity

  1. Like
    adifederico reacted to tonic123 in Save and reuse sections option?   
    ah now I see.  The checkbox is very light.   Thank you so much!  
  2. Like
    adifederico reacted to vArnIIe in Save and reuse sections option?   
    Oh no! This was perfect and what will happen to all the sections I saved ready for reuse?
  3. Like
    adifederico reacted to dinapolis in Save and reuse sections option?   
    Unbelievable! That's so confusing!
     
  4. Like
    adifederico got a reaction from dinapolis in Save and reuse sections option?   
    Earlier today 12/1/2022 I had some option in my add section area and in my section edit options to save and reuse sections. I used it a bit this morning and it was nice but now its gone. Where did it go?

  5. Like
    adifederico got a reaction from creedon in Save and reuse sections option?   
    I have talked to Squarespace and they say I may have been temporarily able to access a new feature they are not ready to roll out. So, as nice as this feature was. I only got to use it for about 3 hours. But it worked very well for reusing sections.
     
  6. Like
    adifederico got a reaction from munaccount in How to target my buttons with css   
    Also, color will only change the text color.  You will have to use background-color if you want to change the button color itself.
    .sqs-block-button:hover {
      background-color: red !important;
    }
     
  7. Like
    adifederico got a reaction from munaccount in How to target my buttons with css   
    Try using the !important rule. It will override all other CSS specificity selectors.
    .sqs-block-button:hover {
      color: red !important;
    }
    a:hover {
      color:red !important;
    }
     
  8. Like
    adifederico reacted to joseph81 in How do you get buttons to go side by side and not stacked on mobile version only?   
    @media (max-width: 640px) { .sqs-layout .sqs-col-12 [class*=sqs-col] { float: left !important; width: 50% !important; } } This is one approach to achieve what you want.
  9. Like
    adifederico got a reaction from tuanphan in Styling "info text" on event pages   
    Give this code a try. You can change the color hex to whatever color you want. Same with size. You can up the rem if you want.
    .eventitem-title {
        color: #515151 !important;
    }
    .eventitem-meta-item {
        font-size: 1.2rem;
    }
  10. Like
    adifederico got a reaction from tuanphan in Removing background color on a particular footer image.   
    Give this code a try.   .image-overlay {
        background-color: rgba(255, 255, 255, 0) !important;
    }
  11. Like
    adifederico reacted to Ziggy in Need help adding an arrow to the existing button at the bottom of my page.   
    It looks like you want exactly his button, why not use the code provided by Ghost Plugins:
    https://www.ghostplugins.com/steps/go-arrow-button-style
  12. Like
    adifederico got a reaction from leilollipop in Need help adding an arrow to the existing button at the bottom of my page.   
    You will need to use the pseudo  class with some custom CSS to achieve this. 
    a.sqs-button-element--primary::after {
        content: '\2192';
        padding-left: 10px;
    }
  13. Love
    adifederico reacted to Ziggy in Changing the "E-Mail Address is required." from the newsletter block.   
    @heffalump Add this to the Custom CSS on your website and adjust the colour hex codes:
    .newsletter-block .newsletter-form-field-wrapper .field-error { background: #000000; color: #ffffff; } Hope that helps!
  14. Love
    adifederico reacted to Flinx in Styling "info text" on event pages   
    Worked like a charm! Thank you so much!!
  15. Love
    adifederico got a reaction from Flinx in Styling "info text" on event pages   
    Give this code a try. You can change the color hex to whatever color you want. Same with size. You can up the rem if you want.
    .eventitem-title {
        color: #515151 !important;
    }
    .eventitem-meta-item {
        font-size: 1.2rem;
    }
  16. Like
    adifederico got a reaction from Ziggy in Styling "info text" on event pages   
    Give this code a try. You can change the color hex to whatever color you want. Same with size. You can up the rem if you want.
    .eventitem-title {
        color: #515151 !important;
    }
    .eventitem-meta-item {
        font-size: 1.2rem;
    }
  17. Love
    adifederico reacted to A1Protocol in Removing background color on a particular footer image.   
    Hey!
    Thank you, it works.
  18. Like
    adifederico got a reaction from A1Protocol in Removing background color on a particular footer image.   
    Give this code a try.   .image-overlay {
        background-color: rgba(255, 255, 255, 0) !important;
    }
  19. Like
    adifederico got a reaction from autpops in Highlighted Text Spacing Issue on Mobile   
    @media screen and (max-width: 767px) and (orientation: portrait){
    h2 {
        font-size: 1.1rem;
    }
    }
    Sorry. Thats the correct code here.
  20. Like
    adifederico reacted to autpops in Highlighted Text Spacing Issue on Mobile   
    Thanks for the code, @adifederico! I'd actually like the text to remain large and on multiple lines for mobile. The text becomes way too small to keep it all on one line for mobile. So that's the issue I'm having—I don't know how to just extend the highlight and center the text for the line break on mobile.
  21. Like
    adifederico reacted to Beyondspace in Hide specific gallery image only in mobile view   
    You can try
    @media only screen and (max-width: 767px) { #block-yui_3_17_2_1_1665061046438_38782 .slide.sqs-gallery-design-grid-slide:nth-child(1) { display: none; } } Let me know how it works on your site
    Support me by pressing 👍  or marking as solution if this useful for you
  22. Like
    adifederico got a reaction from tuanphan in Mindbody Appointments widget - need CSS for space between elements   
    Give this a try. This will add padding to the top and bottom of the name. If you wish to increase the space just up the 10px.
    div.healcode.appointments .trainer-label {
        padding: 10px 0;
    }
  23. Thanks
    adifederico reacted to MartinMurray in How to make a Code Block smaller on Mobile view on 7.0?   
    Thanks, I was just overthinking it a little, Your snip was missing '}}'...

    This works great.

    /* Mobile resize code block */
    @media screen and (max-width:767px) {
    div#block-62452260eb439022d3cd {
        width: 50%;
    }
    }

    Thanks 
  24. Love
    adifederico reacted to TechyBecky_101 in Mindbody Appointments widget - need CSS for space between elements   
    THANKS! This worked 🙂
  25. Thanks
    adifederico got a reaction from TechyBecky_101 in Mindbody Appointments widget - need CSS for space between elements   
    Give this a try. This will add padding to the top and bottom of the name. If you wish to increase the space just up the 10px.
    div.healcode.appointments .trainer-label {
        padding: 10px 0;
    }
×
×
  • 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.