Edit Slider arrows and buttons

@Boustfield For the slider arrows, you can simply change the Font Color of the arrow element, by styling it in webflow.

The round dot buttons are a bit more complex, and although we cannot style them in the webflow editor, you can add a custom HTML Embed to apply your own custom colors. For example, if you insert this into an HTML embed on your page, the dot colors should change:

<style>
.w-slider-dot {
  background: teal;
}
.w-slider-dot.w-active {
  background: aqua;
}
</style>

Hope that helps!
-Dan

8 Likes