The HTML code for my input range looks like this:
<input class="sliderNoTextbox" id="ti_monatlich" type="range" name="ti_monatlich" data-theme="d">
it looked like this:
based on this answer I added following css:
.sliderNoTextbox.ui-slider-input {
display : none !important;
}
now it looks like this:
Where before was a textbox, now is a blank space. I just can't figure out how to get rid of that space.. can anyone help me out?
The blank space only appears on Android devices
UPDATE
I have created a completely empty page, with only the slider, still the blank space appears. It does not seem to depend on any other elements:
<body>
<input class="sliderNoTextbox" id="ti_monatlich" type="range" name="ti_monatlich" data-theme="d">
</body>
Using jQM 1.3.2 with jQuery 1.8.3