Shopify themes, liquid, logos, and UX
Hello i have a 2 part question.
- On desktop and mobile I want to remove the pause and play button and just keep the dots.
- On mobile I want to remove the counter for collections too.
- Bonus points to change the dots to white.
Solved! Go to the solution
This is an accepted solution.
Hello @jakethagun
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> component-slideshow.css
add this code at the end of the file
@media screen and (min-width: 750px) {
.slideshow__autoplay.slider-button {
display: none !important;
}
}
@media screen and (max-width: 749px) {
slideshow-component.page-width .slideshow__autoplay {
display: none !important;
}
}
.slider-counter__link--active.slider-counter__link--dots .dot {
background-color: white !important;
}
.slider-counter.caption {
display: none !important;
}
.slider-button {
display: none !important;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Good day, @jakethagun , Could you kindly provide me with the link to your store?
Hello @jakethagun, To accomplish this, you can easily uncheck the checkbox as depicted in the screenshot, or you can achieve the same result by adding a small snippet of code in the custom.css file.
.slideshow__controls .slider-button {
display: none !important;
}
.slideshow__controls .slideshow__autoplay.slider-button {
display: none !important;
}
.slideshow__controls .slider-counter__link--active.slider-counter__link--dots .dot {
background-color: grey; /* you can change the color of dots to white */
}
Feel free to reach out if you have any additional questions. If this solution is helpful, please consider liking and accepting it.
S.P
I want to keep the slides auto rotating though. I just wanted to remove the visuals besides the dots. Thank you though it removed the arrows etc and I changed it to white.
Any idea how to get rid of the collection counter/arrows on mobile?
This is an accepted solution.
Hello @jakethagun
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> component-slideshow.css
add this code at the end of the file
@media screen and (min-width: 750px) {
.slideshow__autoplay.slider-button {
display: none !important;
}
}
@media screen and (max-width: 749px) {
slideshow-component.page-width .slideshow__autoplay {
display: none !important;
}
}
.slider-counter__link--active.slider-counter__link--dots .dot {
background-color: white !important;
}
.slider-counter.caption {
display: none !important;
}
.slider-button {
display: none !important;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
You are the best thank you!
Thanks.... always there to help you.
Please hit the like button also.
Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024