Okay, now that I've woken up and re-read the thread, I think I understand - you're only concerned about clicking the slider bar, not dragging the handle.
Add the following to the end of template.css to convert the slider handle to a vertical bar and hide the slider callout (these styles are for the default template). Replace "QQ" with your question ID.
Code:
#questionQQ .ui-slider .ui-slider-handle {
height:25px;
width: 2px;
margin-left: 0;
top: -8px;
background: #79B7E7 none;
border: 0 none;
}
#questionQQ .slider_callout {
display: none;
}
If you want to initially hide the slider handle,
set up your survey to use JavaScript
and add the following script to the source of the slider question. Again, replace "QQ" with the question ID.
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var qID = QQ;
$('#question'+qID+' .ui-slider .ui-slider-handle').hide();
$('#question'+qID+' .ui-slider').live('mouseup', function() {
$('#question'+qID+' .ui-slider .ui-slider-handle').show();
});
});
</script>