I have
<div id='cbWebBaseShades' style='float: left;' ></div>
<div id='slWebBaseShades' ></div>
<label id="tbWebBaseShades" class="layerLabel"
>County Base Map</label>
and
$('#cbWebBaseShades').jqxCheckBox({ theme: 'ui-smoothness', checked: true });
$('#slWebBaseShades').jqxSlider({ theme: 'ui-smoothness', min: 0, max: 100, value: 100, step: 5, showButtons: false, ticksPosition: 'bottom', ticksFrequency:25, width: 35, height: 12 });
Drawn like that they display top to bottom. How can I get them to draw consecutively on one line? I really don’t want to use absolute positioning.
Thanks
Brent