Hello!
I am using the dawn theme and my URL is carcleansweden.se. I would like to get some help with removing the whole bar where the arrows and the pause button are located:
I would hugely appreciate the help!
A user seeks help removing the slideshow control bar (arrows and pause button) from their Dawn theme store. Multiple solutions are provided:
Primary Solutions:
.slideshow__controls { display: none; } to the Custom CSS section in theme settingscomponent-slider.css file directly and change .slider-buttons display property from flex to noneslideshow-component .slider-buttons { display: none !important; } to Custom CSSFollow-up Issue:
After implementing the fix, a small line remains visible on mobile. A solution is provided to edit section-image-banner.css and add display: none; within a specific media query for mobile screens.
New Problem:
One commenter reports that applying the CSS fix inadvertently hides their announcement bar, with no resolution yet provided.
One respondent also suggests using the EasyEdits app as a no-code alternative for making visual changes to the site.
Hello!
I am using the dawn theme and my URL is carcleansweden.se. I would like to get some help with removing the whole bar where the arrows and the pause button are located:
I would hugely appreciate the help!
Hi. This is a simple change. Navigate to your theme in the Shopify Admin. Under âHome pageâ, find the section for this slideshow. This theme does not have a setting to show/hide the slideshow controls, so add the following under âCustom CSSâ:
.slideshow__controls {
display: none;
}
Then save and publish.
If you want to add a setting to the admin dashboard in order to control showing/hiding of these controls in the future, reach out and I can configure your code to set this up.
Hi @CarCleanCC
2.Find the component-slider.css file
Hi @CarCleanCC
Please add this code to Custom CSS in Online Store > Themes > Cutomize > Theme Settings
slideshow-component .slider-buttons { display: none !important; }
Thank you that worked. But now I have a small line that didnât go away:
Is it possible to remove or maybe change background color for the slider to black?
In the same way, locate the âsection-image-banner.cssâ file and find
@media screen and (max-width: 749px) {
.bannerâmobile-bottom .banner__media {
in the file
Add âdisplay: none;â
@media screen and (max-width: 749px) {
.banner--mobile-bottom .banner__media, .banner--stacked:not(.banner--mobile-bottom) .banner__media {
position: relative;
display: none;
}
}
Hi! Looks like everyone has dropped lots of code for you to try. Normally Iâd write that out and give it to you as an option, but I think you have plenty haha. I did want to just put EasyEdits out there as an option. Itâs an app that I made that lets you just click and change your site, like a WYSIWYG editor. So you can just select the element and hide it, without any code. You can also make the edits on a free trial and delete the app, while keeping the edits, without paying for anything!
Let me know if you happen to give it a try or if I can help in any way, best of luck!
This works, but now my announcement bar is no longer visible. Any ideas?