Jump to content

How do I make the arrows in the "List" section at the top

Recommended Posts

19 hours ago, WoCo said:

Site URL: https://wocostudios.com/the-financial-gym

So I am using images that are quite different in height for the list and I am unhappy with only being able to have the arrows at the bottom or sides of the images. Can I make them stick to the top instead? There is not an option to do this. via the design popup so I am assuming it'd have to be CSS?

 

Thank you

Jaiden

Screen Shot 2021-09-26 at 3.36.04 PM.png

Screen Shot 2021-09-26 at 3.42.41 PM.png

where exactly do you want them be?

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

Hi there! I am looking to have them show up exactly as they do when you select "bottom" in the built-in design menu, but instead at the top of the content frame. 

So what does that look like? Centered, spaced ~50px apart at the top of the images. Screenshot attached 

desired arrow location.jpg

Link to comment
1 hour ago, WoCo said:

Oops! Sorry I don't think I quoted you - I replied above ^ 

make it bottom first then I can figure how to move to the top

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
16 minutes ago, WoCo said:

Hi there, it's back to bottom! 

Try in Desgin > Custom Css

section[data-section-id="6149fd5a7d8f9f6957a4ab22"]
  .desktop-arrows.arrows-bottom-wrapper {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

section[data-section-id="6149fd5a7d8f9f6957a4ab22"] {
  margin-top: 40px;
}

 

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

Here is the result after adding the Css codes

image.thumb.png.67d01a32287edbec0c68ef6927770ffd.png

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
31 minutes ago, bangank36 said:

Try in Desgin > Custom Css

section[data-section-id="6149fd5a7d8f9f6957a4ab22"]
  .desktop-arrows.arrows-bottom-wrapper {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

section[data-section-id="6149fd5a7d8f9f6957a4ab22"] {
  margin-top: 40px;
}

 

Here is my configuration in Design > Custom Css that makes you site works. 

You can follow my below video to paste those codes.

 

Edited by bangank36

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
1 hour ago, bangank36 said:

Here is my configuration in Design > Custom Css that makes you site works. 

You can follow my below video to paste those codes.

 

 

Thank you SO much! This worked perfectly for the desktop!! Is there any way to have the same change reflected on mobile? I tried switching "desktop-" to "mobile" in the code you provided but it didn't work (totally clueless here).

Thank you again for all your help! 

Link to comment
6 hours ago, WoCo said:

Thank you SO much! This worked perfectly for the desktop!! Is there any way to have the same change reflected on mobile? I tried switching "desktop-" to "mobile" in the code you provided but it didn't work (totally clueless here).

Thank you again for all your help! 

With mobile, you can add the following Css code

@media only screen and (max-width: 768px) {
  section[data-section-id="615339193c7cae52b682c13f"] .mobile-arrows {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
  }

  section[data-section-id="615339193c7cae52b682c13f"]
    .user-items-list-carousel__gutter {
    overflow: visible;
  }
}

 

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment

The result is generated by Custom Css in mobile

image.png.5757fffce29f67ec9598c85eca38d820.png

BeyondSpace - Squarespace Website Developer

🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox)
🗓️ Delivery Date Picker (Squarespace Date picker form field)
💫 Gallery block 7.1 workaround
🥳 Sparkplugin Customisations Browsers (Browse +100 Spark plugin customisations)
🥳 Elfsight Template Browsers (Browse +1000 Elfsight widget Templates)

If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you!

 

Link to comment
1 hour ago, bangank36 said:

With mobile, you can add the following Css code

@media only screen and (max-width: 768px) {
  section[data-section-id="615339193c7cae52b682c13f"] .mobile-arrows {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
  }

  section[data-section-id="615339193c7cae52b682c13f"]
    .user-items-list-carousel__gutter {
    overflow: visible;
  }
}

 

Thank you so much! You are so generous, I really appreciate you taking the time to help me with this.

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • 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.