I've wanted to make the slider-track thicker (not longer) and have used the following JavaScript code to accomplish this:
jQuery(".track").css("height", "30px");
However, the result is that the slider handle is now vertically misaligned with the track. Any idea how to fix this?
Page 1 / 1
Hi there, you will want to add some CSS that adjusts the ".handle". The below code was able to display okay for me using the Flat Layout:
jQuery(".track").css("height", "30px");
jQuery("td.BarOuter").css("height", "60px");
jQuery(".handle").css("height", "50px");
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.