Jump to content

How to change banner slideshow arrow shape?

Go to solution Solved by tuanphan,

Recommended Posts

Posted

Hi all,

I'm trying to find a way to alter the arrow style in the carousel banner on the home page. I want to change the arrow style to be " >" instead of the default arrow. I'd also like to remove the background colour, including the hover (which brings up the circle even though I set it to white). I've searched on the forum but not found a suitable/working solution. Example below.

Site: https://toroscangar.com

Password: 123123123


How can i achieve this?! 

Thanks a bunch!

Arrow Example.png

Posted

Add to Design > Custom CSS

/* List Section - UI Custom Arrows */
button.user-items-list-banner-slideshow__arrow-button svg {
    display: none !important;
}
button.user-items-list-banner-slideshow__arrow-button--left div:before {
    content: "\e006";
    font-family: 'squarespace-ui-font';
    transform: rotate(270deg);
    display: block;
    color: red;
    font-size: 30px;
    line-height: 60px;
}
button.user-items-list-banner-slideshow__arrow-button--right div:before {
    content: "\e006";
    font-family: 'squarespace-ui-font';
    transform: rotate(-270deg);
    display: block;
    color: red;
    font-size: 30px;
    line-height: 60px;
}

image.png.e7d3786834703fc89bfd83cd6438d959.png

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Posted (edited)

Thanks! This is what I'm after. @tuanphan

Any way to make the weight of the arrow smaller/thinner? And for some reason the arrow circle won't go fully black (seems to be a little transparent even though its black in the colour settings?)

Something like the arrow below would be great:

 

image.png.491959e44edbf707b0951c6110fbb52a.png

Edited by TJC123
  • Solution
Posted
On 3/28/2023 at 6:07 PM, TJC123 said:

Thanks! This is what I'm after. @tuanphan

Any way to make the weight of the arrow smaller/thinner? And for some reason the arrow circle won't go fully black (seems to be a little transparent even though its black in the colour settings?)

Something like the arrow below would be great:

 

image.png.491959e44edbf707b0951c6110fbb52a.png

Use this

.user-items-list-banner-slideshow__arrow-icon-background.user-items-list-banner-slideshow__arrow-icon-background-area {
    opacity: 1 !important;
}

I used icons here, you can find one & let me know

https://tuanphan.squarespace.com/ss-ui-fonts?noredirect

pass: abc

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Posted
On 4/2/2023 at 9:55 PM, TJC123 said:

Thanks @tuanphan, getting there! I'd like the arrow weight to match that of the pagination arrow, how can i do that? 

Can you share link to a page where you use pagination arrow? I can check arrow style easier

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

  • 1 year later...
Posted

Hi @tuanphan. Thank you for the code you've provided in this thread. It has got me close to achieving what I'd like, but for the life of me, I cannot see how to remove the orange background.

Would you have any idea how to remove the background, but leave the white arrows, please?

Site: https://guytobin.co.uk/homex

 
Tom Griffiths | Tenji Digital
 
Squarespace Web Designer
Posted
On 7/3/2024 at 6:25 PM, TomTenjiDigital said:

Hi @tuanphan. Thank you for the code you've provided in this thread. It has got me close to achieving what I'd like, but for the life of me, I cannot see how to remove the orange background.

Would you have any idea how to remove the background, but leave the white arrows, please?

Site: https://guytobin.co.uk/homex

Which page are you referring to? I don't see Slideshow

https://www.guytobin.co.uk/homex

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Posted
On 7/5/2024 at 11:20 PM, TomTenjiDigital said:

Sorry @tuanphan - I forgot that I had disabled the page. You should be able to access it with the same URL now. Thank you.

You can use this code to Custom CSS box

div.user-items-list-banner-slideshow__arrow-icon-background.user-items-list-banner-slideshow__arrow-icon-background-area {
    background-color: transparent !important;
}

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

  • 2 months later...
Posted
On 9/29/2024 at 3:20 AM, cemitchelldesign said:

@tuanphan Your original code here works great on desktop, thank you! How do I apply it to mobile? I tried adding @media only screen and (min-width:767px) before it, but it didn't do anything.

A lot of code in this thread, you want to make mobile arrow background to transparent, or change mobile arrow to custom icon?

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

  • 2 weeks later...
Posted
On 10/8/2024 at 8:39 PM, cmitchell said:

@tuanphan I would like to change the mobile arrows to custom icon. Website is joelslavensdoglodge.com. Custom arrows are towards the bottom of the homepage.

Remove above code & Use this code to Custom CSS Box

button[class*="arrow-button"] svg {
    display: none !important;
}
[class*="arrow-icon-background"] {
        background-size: contain;
    background-repeat:no-repeat;
    background-position: center center;
    background-color: transparent !important;
}
button[class*="arrow-button--left"] [class*="arrow-icon-background"] {
    background-image: url(https://content.invisioncic.com/p289038/monthly_2022_09/1773097810_Group12@2x.png.fd2d6dc749f79343ae687e29649cea4f.png);
}
button[class*="arrow-button--right"] [class*="arrow-icon-background"] {
    background-image: url(https://content.invisioncic.com/p289038/monthly_2022_09/1753379866_Group13@2x.png.54c2b0e59adbe1a1f31f46b8b628398d.png);
}

image.thumb.png.05b683a3b390d38e04c181f701d9ce79.png

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

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.