I want to add display arrows in slideshow

I want to add display arrows in slideshow

swayurindia
Excursionist
144 0 9

I want to add display arrows in slideshow Just like the below screenshot

Screenshot_20231006_153202_Chrome.jpg

 

my website like is www.swayur.com

Replies 5 (5)

David_SHT
Globetrotter
605 125 125

Hi @swayurindia 

This is David at SalesHunterThemes.

Thank you for your question. 

Please share your store URL, page URL and also password (if your store has one) so we can help you.

We create fast Shopify themes, focusing on exceptional performance and seamless experience across all devices.

Try our Electro theme Free! (Now at Black Friday price)

centous
Shopify Partner
4 1 1

Hi Swayurindia,

 

Welcome to the Shopify community.

 

Do you want to show arrows like this screenshot?

techdignity_0-1696588771877.png


Then, please apply below CSS in your base.css file.

body .slider-button {   
    background: #000 !important;
    color: #fff !important;
    border-radius: 50% !important;
}
body .slider-button svg{   
    height: 20px !important;
}


Please apply this CSS and let me know if you have any other questions.

 

Please do not forget to accept the solutions 🙂

 

Thanks!

Please don't forget to Like and Mark the Solution as accepted.

Email: info@centous.com

Shopify Apps: https://apps.shopify.com/partners/techdignity

Shopify Expert: https://www.shopify.com/partners/directory/partner/techdignity
swayurindia
Excursionist
144 0 9

I want the buttons to be displayed on center left and center right. I hope you have understood?

centous
Shopify Partner
4 1 1

Hi @swayurindia 

 

Please add below CSS that will work for you.

 

.slideshow__controls {
    position: absolute;
    width: 100%;
    top: 45%;
}
slideshow-component {
    position: relative;
}
button.slider-button.slider-button--prev {
    position: absolute;
    left: 0;
}
button.slider-button.slider-button--next {
    position: absolute;
    right: 0;
}
.slider-counter.slider-counter--dots {
    position: absolute;
    bottom: -260px;
}
Please don't forget to Like and Mark the Solution as accepted.

Email: info@centous.com

Shopify Apps: https://apps.shopify.com/partners/techdignity

Shopify Expert: https://www.shopify.com/partners/directory/partner/techdignity
swayurindia
Excursionist
144 0 9

IT IS  NOT WORKING