How to style slider menu buttons

Hello,
Is it possible to style (besides the current options of round/square/numbers etc) so that the block background is removed so only the characters are shown?
Thanks.

example


Here is my public share link: LINK
(how to access public share link)

There is currently no way to do this in webflow. There is a wishlist item for this functionality. You can style some things with custom code Edit Slider arrows and buttons - #16 by Toby

Add this custom code

<style>
.w-slider-dot.w-active {
    background-color: transparent;
}
.w-slider-dot {
	background-color: transparent;
}
</style>

amazing. Thanks @AntonioBalderas @DFink, it worked.

mind if I sneak in a related question? How would I style input text in a form field to another colour? I am trying to change the default grey. Thanks again!

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.