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
2010-04-11 19:27:06