Need help with customizing ui slider

Need help with customizing ui slider

Hello guys.

Im new to jQ and jQ UI but I have managed to get pretty far by myself.
I have really struggle the last 4-5 hours. Searching for all kinds of solutions, but I CAN'T really style the slider button at all! I have tried all sorts of .ui-slider-handler class but It wont style at all.. So I really need your help with this!
I have only managed to find 1 way to style the inner slider with a different color.

I would also like to know where I can find all the css classes for styling. So far I have managed to find some in the ui files, but its a loong 1 line list.. and there's not much information about styling on the slider-help page either! Thanks in advance :)

HTML/JS
  1. <div id="slider"></div>
  2. <script type="text/javascript">
  3. $(document).ready(function(){

  4. $(function() {
  5. $( "#slider" ).slider({
  6. range: "min",
  7. value: 0,
  8. min: 0,
  9. max: 15000,
  10. slide: function( event, ui ) {
  11. $( "#amount" ).val(ui.value );
  12. }
  13. });
  14. $( "#amount" ).val($( "#slider" ).slider( "value" ) );
  15. });
  16. });
  17. </script>

CSS

  1. #slider{
  2. width: 400px;
  3. margin: 50px 0 0 50px;
  4. background-color: #fff;
  5. }

  6. .ui-slider-range.ui-widget-header{
  7. background: #e4b15f;
  8. }

  9. .ui-slider .ui-slider-handle {
  10. position: absolute;
  11. z-index: 2;
  12. width: 1.2em;
  13. height: 1.2em;
  14. cursor: default;
  15. outline: none;
  16. }