slideshow control pause button color change

Solved

slideshow control pause button color change

shamsnisa
Excursionist
20 1 8

Hi,

I am using the Dawn 13.0.1 theme and want to change the color of the slideshow control pause button. Right now it's white and I want to change it.

I did change the left and right arrow keys color now I want to make the pause button the same color.

I also want to increase the gap between the pause button and the nest button.

Any help will be appreciated , please refer the picture below for more details.Screenshot (193).png

Accepted Solution (1)

GTLOfficial
Shopify Partner
560 122 111

This is an accepted solution.

Hello @shamsnisa 

Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-slideshow.css

.slideshow__autoplay .icon.icon-pause {
left: 5rem !important;
}
.slideshow__autoplay path {
fill: crimson;
}

result
6.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

View solution in original post

Replies 2 (2)

GTLOfficial
Shopify Partner
560 122 111

This is an accepted solution.

Hello @shamsnisa 

Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-slideshow.css

.slideshow__autoplay .icon.icon-pause {
left: 5rem !important;
}
.slideshow__autoplay path {
fill: crimson;
}

result
6.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh
shamsnisa
Excursionist
20 1 8

Thanks @GTLOfficial  it worked only a small change in my case as I want to shift both stop and pause button towards right:

.slideshow__autoplay .icon.icon-play,
.slideshow__autoplay .icon.icon-pause {

left: 5 rem !important;

}