As you can see in the picture below I have numbers to move slideshow pictures on this theme.
Am currently using Sense version 9.0.0.
I would like to remove the numbers and add Auto Rotate slides and show slid indicator slides instead of the numbers. I just don’t think it looks good and also is open to any suggestions you guys have. please let me know if I can add some kinda code to fix this issue. Thank you.
www.mymawduh.com
Hi @MyMawduh
No any coding required here.
I hope this solution will works. Please follow below steps
-
Go to Online Store
-
Go to theme customize option
-
Click slider section and change style counters to Dots that’s it See below SS
1 Like
Okay, thats good. but now it still shows below the image. can it be included with the picture?
You can add CSS code for this. I hope this solution will works. Please follow below steps
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above tag
@media screen and (min-width: 750px){
.slideshow__controls {
margin-top: -45px;
}
}
2 Likes
it works beautifully. thank you, Alok.
1 Like
Can we change the color to white?
@MyMawduh Your welcome
For white color use below code:
@media screen and (min-width: 750px){
.slideshow__controls {
margin-top: -45px;
z-index: 9999;
}
.slider-counter__link--dots .dot {
background-color: #fff!important;
}
.slider-counter__link--active.slider-counter__link--dots .dot{
border:1px solid #fff!important;
}
}
1 Like
Please use 2 instead of 9999 z-index value
like as: z-index: 2;
1 Like
It works perfectly, and it looks way better. thank you so much. great help
1 Like
But after this I encounter a new problem that is when I’m opening the hamburger menu in the mobile the three dots are overlapping.
That solves the problem for the desktop view of the three dots, but for the cell phone it is still the same?
Yes but only for the desktop, if you go to the cell phone View the three dots are still below the image.
This only affects the desktop version, the three dots still show on the cell phone.
Is there a similar code for the mobile version of the Sense Slideshow so it isn’t positioned underneath it
Hi, can you please share the code for mobile
Did you find the code to sort this for mobile? I also want to do the same but can’t.
guys, for the mobile, you should do the same thing but remove @media screen and (min-width: 750px){
The code should be :
.slideshow__controls {
margin-top: -45px;
z-index: 2;
}
.slider-counter__link--dots .dot {
background-color: #ffffff!important;
}
.slider-counter__link--active.slider-counter__link--dots .dot{
border:1px solid #ffffff!important;
}