I want to customize the default map slider that comes with the JSAPI Compact Build but I can't seem to find any information on this. I've tried using esri.config.defaults.map.slider but the only thing I can do with this is to set the width which only turns the slider horizontal. What I'm looking to do is to physically change its position on the map. I have a toolbar across the top of my map and some users are finding it difficult to tap the + to zoom in on the map with mobile devices because the slider is too close to the toolbar and they inadvertently tap a button on the toolbar instead. So I would like to move the slider down some so it's not so close to the toolbar. How do I do this?
.esriSimpleSlider { top:90%; }
You can position the slider at the bottom of the map using the following css:.esriSimpleSlider { top:90%; }
.esriSimpleSlider { left: 95%; top: 10px; }
.esriSimpleSlider{ left:90% !important; top:15% !important; }