slider

slider


Hello,
I am trying to create a slider with me own background and handle in
1.6rc4.
html:
<div id='searchf_price_slider'></div>
js:
    $("#searchf_price_slider").slider({
        min:1,
        max:pmax,
        value:price,
    });
and I am using this css:
#searchf_price_slider {position:relative; width:200px; height:20px;
background-image:url(slider-bg.png); background-repeat:no-repeat;
background-position:center center;}
.ui-slider-handle {position:absolute; z-index:1; height:20px; width:
15px; background-image:url(slider-handle.gif);}
It works but unlike in 1.6rc2, on the extrem right, the handle
visually exceed the end of the slider: it seems that the width of the
handle is not taking into account...
Is it a bug or I am doing something wrong ?