Hello Guys,
I want to change the color below my slideshow into #0f0c12.
And remove the button play of the slideshow.
Someone can help me ?
Thank you in advance.
Hello Guys,
I want to change the color below my slideshow into #0f0c12.
And remove the button play of the slideshow.
Someone can help me ?
Thank you in advance.
Hi @ChrisDaNova , can you share your store url?
@ChrisDaNova , Go to component-slideshow.css and add the following code :
slideshow-component:not(.page-width) .slider-buttons {
background-color: #0f0c12 !important;
}
@ChrisDaNova , Add the following code to the same file :
.slideshow__autoplay.slider-button {
display: none !important;
}
Love you ![]()
Hi @ChrisDaNova
Check this one.
From your Shopify admin dashboard, click on āOnline Storeā and then āThemesā.
Find the theme that you want to edit and click on āActionsā and then āEdit codeā.
In the āAssetsā folder, click on ābase.css, style.css or theme.cssā file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.slideshow__controls.slideshow__controls--top.slider-buttons.no-js-hidden {
background: #0f0c12 !important;
}
button.slideshow__autoplay.slider-button {
display: none !important;
}
And Save.
Result:
Please donāt forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you bro ![]()
@ChrisDaNova , Glad I helped, feel free to contact me any time if you need help.