Jump to content

pixies1

Member
  • Posts

    45
  • Joined

  • Last visited

Everything posted by pixies1

  1. Hi there, it's a code block with the following code: <div class="slider"> <div class="slider-image"> </div> </div> Sorry I didn't think to include that in my previous message. And thanks for finding/posting that video! I watched a similar one to figure out how to do it
  2. Thanks! To get this effect, I actually created one long image that scrolls continuously First create a 5900x390px image with your logos spaced out evenly (you can do this for free at Canva.com) Then add the code below to CSS (replacing my URL image with your own) Hope it works for you! //auto-scrolling logos// .slider { width: 135%; overflow: hidden; margin-left: -13vw; margin-right: 0vw; position: relative; } .slider .slider-image { background-image: url(https://static1.squarespace.com/static/60606ea81846b4151d82ec0b/t/60be85e8d976482627d1592a/1623098856396/Slider.png); width: auto; height: 150px; background-size: 2950px 200px; animation: slide 50s linear infinite; } @keyframes slide { from {background-position-x: 0px;} to {background-position-x: -2950px;} }
  3. Hi there, I didn't end up using a plug-in. Instead I'm having the company logos auto-scroll on my website: https://typeaprofessionals.com Good luck!
  4. Hi Tuan, I added both blocks of CSS (below) and now it looks right. Thank you! // testimonials - tablet 2 columns // @media screen and (max-width:991px) and (min-width:768px) { div#block-yui_3_17_2_1_1619732613520_13491+.row .span-4 { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; } } // tablet testimonials // @media screen and (max-width:991px) and (min-width:768px) { div#block-yui_3_17_2_1_1619732613520_13491+.row .span-4 .code-block { width: 50%; } }
  5. Thanks, Tuan, though unfortunately this code doesn't fix it, it puts them in three skinny columns instead!
  6. Yes! Ideally the columns would be equal in width. Thank you!
  7. Hi, thank you, but the bottom two testimonials are not aligned in the same columns as the top four testimonials (see attached). Any idea how to fix?
  8. Hi Bangan, thanks for the response! I have the block IDs for the 4 columns, I just don't know how to use them in CSS to get the 4 columns to appear as 2 columns in tablet view. Here are the block IDs: #block-yui_3_17_2_1_1620053498091_5173 #block-yui_3_17_2_1_1620053498091_5821 #block-yui_3_17_2_1_1620053498091_7815 #block-yui_3_17_2_1_1620053498091_9427
  9. Hi Tuan, This code no longer works for the projects section on my homepage: @media screen and (max-width:767px) { div#block-yui_3_17_2_1_1620053642909_82057+.row .span-3 { width: 50%; } } I would like the 4 columns to appear as 2 columns in tablet view. And on my testimonials page, I'd like the 3 columns to appear as 2 columns in tablet view. https://www.typeaprofessionals.com/testimonials Thank you!
  10. I moved the projects list to the home page so the previous code you gave me doesn't work and I don't know how/where to get the new div code?? Sorry!! I'd also love to improve the "testimonials page" on tablet and have the quotes be 2 columns across in 3 rows instead of 3 columns across in 2 rows. Is this possible?
  11. I was able to decrease all the white spacing by hiding the individual spacers I didn't want to show on mobile. If there's a better way to do this, I'd love to know. Thank you for that suggestion!
  12. Worked, thank you! Is there a way to change the order of the columns in tablet view so the list reads in alphabetical order from top to bottom? Current: 1st column 2nd column 3rd column 4th column Preferred: 1st column 3rd column 2nd column 4th column
  13. Hi! Sure if they can fit three across on tablet and not look too small, that would be ideal. Otherwise they can just be two across on tablet. Right now they're stacked in one column on mobile which I think looks fine, but I'd like to see how they look two across on mobile, too. Thanks!
  14. Hi @tuanphan, I redesigned my site and now the code that you previously provided to me to make my projects list section look great in tablet view no longer works, and my attempts to rework your code have been unsuccessful. Can you please help me again? On my home page in the "We do it all. And then some." section, I'd like for that list of four columns to appear as just two (alphabetical) columns in tablet view. https://www.typeaprofessionals.com/ Column 1: #block-yui_3_17_2_1_1620053498091_5173 Column 2: #block-yui_3_17_2_1_1620053498091_5821 Column 3: #block-yui_3_17_2_1_1620053498091_7815 Column 4: #block-yui_3_17_2_1_1620053498091_9427 🙂
  15. Site URL: https://www.typeaprofessionals.com/ Hello! I need help making images in a summary block appear smaller in tablet view. I have a summary block with six client logos on my home page. They're a good size in desktop (three across) and mobile view (stacked). In tablet view, they stack like they do in mobile view and they're way too large. For tablet view, I'd like for them to be smaller and arranged two or three across instead of stacked, but I'm not sure how to do this because they're in a summary block. Summary block on home page: #block-yui_3_17_2_1_1618324013232_7451 Please help, thank you!
  16. I use Safari on my iMac, iPad, and iPhone. I also notice that sometimes the scrolling appears choppy. Perhaps both of these issues are browser-related?
  17. Hi tuanphan, thanks for checking in. No, I didn't receive any responses on how to fix so there are still black spaces beneath the home page images when I scroll on my tablet and mobile. Any suggestions?
  18. Site URL: https://typeaprofessionals.com Hi there, I'm using the Brine 7.0 template with the parallax scrolling effect for three images on my home page. The images look fine on desktop and tablet view, but when I look at my site on my phone, I notice there is a black space below the images before they start scrolling (shown below). I'm using this CSS to make the header fixed--could this be cause of the black space problem beneath the images? Any idea how to fix? Thank you! //fixed header navigation// .Header.Header--top { position: fixed; top: 0px; z-index:1000; width:100%; } .Intro {padding-top:100px;} .Index {padding-top:100px;} .Main {padding-top:100px;} .Main.Main--page {padding-top:100px !important;} .Main.Main--blog-item {padding-top:0px !important;} @media only screen and (max-width: 480px) { .Main {padding-top:0px !important;} .Intro {padding-top:0px !important;} .Index {padding-top:0px !important;} .Main.Main--page {padding-top:0px !important;} }
  19. Thank you! Looks much better. Is it possible to have the second column underneath the first column and the fourth column underneath the third column so they read down in alphabetical order?
  20. Yes! My site looks okay on a horizontal tablet view but vertical looks terrible, as you noticed 🙂 If you can instruct me how to fix it, I would be most grateful. Thank you!
  21. @lplabranche, did you try adding this entire code?: //remove underlines from hyperlinks// .sqs-block-html a {background-image:none!important} /* Remove non-background image underline for heading and paragraph links */ h1 a, h2 a, h3 a, h4 a, p a {text-decoration: none!important}
  22. @Anat13 That worked, thank you! I had to keep my current line of code and add yours to remove both underlines: //remove underlines from hyperlinks// .sqs-block-html a {background-image:none!important} /* Remove non-background image underline for heading and paragraph links */ h1 a, h2 a, h3 a, h4 a, p a {text-decoration: none!important} I chatted with Squarespace and they said they weren't aware of any issues or recent changes that would cause the problem and they said I shouldn't use CSS on my site 😒 I'm still wondering what is causing a double underline on my site, but at least I'm able to get rid of it now. Thank you SO much!!
  23. Site URL: https://typeaprofessionals.com Please help!! The first CSS I ever entered on my site was to remove the underlines from all hyperlinks throughout my site: .sqs-block-html a {background-image:none!important} Today I was playing around in a code block to see if I could make the hyperlinked text semi-bold and for some reason now the underlines are back in all of my hyperlinks that are not in a code block (the hyperlinks in code blocks still look correct with no underline). I didn't change anything to the CSS and I deleted that code block that I was playing with, but the underlines are still there. If I delete that CSS above, it actually adds a second underline to all the hyperlinks. Can you please help me fix this?? Thank you!!
  24. Haha, I thought I deleted your placeholder text when I pasted the new URL but now I see that I hadn't 🙃 It looks perfect!! Thank you for the elegant solution!!
  25. Thank you bangank36, I uploaded a green version of the icon and added your CSS, but now the icon disappears on hover instead of turning green. Any ideas?
×
×
  • 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.