Yes, it is possible to hide or remove the slider arrows and navigator in Webflow without deleting the entire slider. Here's how you can do it:
1. Select the slider element on your canvas by clicking on it.
2. In the right sidebar panel, you will find the "Slider Settings" tab. Click on it to expand the settings options.
3. Under the "Slider Settings" section, you will find the "Arrows" and "Navigator" options. By default, both options are enabled.
4. To disable the arrows, simply toggle off the "Arrows" option. This will remove the arrow buttons that allow users to navigate through the slides.
5. To disable the navigator, toggle off the "Navigator" option. The navigator is the bullet indicators that show which slide is currently active.
6. Once you have disabled both options, the arrows and navigator will no longer be visible in the published version of your website.
It's worth noting that if you only want to hide the arrows or the navigator temporarily, you can use CSS styling. You can add custom code to the Page Settings in Webflow or use the HTML embed component to add the CSS code. Here's an example:
To hide the slide arrows:
```css
.w-slider-arrow-left,
.w-slider-arrow-right {
display: none !important;
}
```
To hide the slide navigator:
```css
.w-slider-nav {
display: none !important;
}
```
By using CSS, you have more control over the styling and can customize the appearance of the arrows and navigator according to your design preferences. Remember to replace `.w-slider-arrow-left`, `.w-slider-arrow-right`, and `.w-slider-nav` with the appropriate class names for your slider element.