I'm using jquery slider in my web application..need to do some design tweaks. Here is the css code for jquery slider UI I'm using https://gist.github.com/2643478
Here I want to reduce the height of slider-handle. It's not working when I modify height in this code:
.slider .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 10px; height: px; cursor: pointer; }
But I can control the width of the handle. Why it's not possible here to reduce the height?
Thanks!