tags:

views:

50

answers:

1

How can I make the slider track a bit thicker with CSS ?

+1  A: 

You can extend the class SliderThumb.

    public class MyThumbClass extends SliderThumb {
    public function MyThumbClass() {
        super();
        this.width = 25;
    }
}
Cornel Creanga