Select to view content in your preferred language

Simple Slider Possition in JavaScript API

1246
2
Jump to solution
05-30-2012 11:09 AM
VernWolfley
Occasional Contributor
I am trying to move the simple slider to someplace other than the default position in the top left corner.  I am using the compact version of the javascript API.  This what I can find so far but any of the CSS styling that I try does not move the position of the buttons.  What am I missing?

esriSimpleSlider div{
height: 30px !important;
        width: 30px !important;
}
0 Kudos
1 Solution

Accepted Solutions
KellyHutchins
Esri Notable Contributor
The css below will move the compact slider to the bottom left corner.
       .esriSimpleSlider{         top:90% !important;         left:20px !important;      }

View solution in original post

0 Kudos
2 Replies
KellyHutchins
Esri Notable Contributor
The css below will move the compact slider to the bottom left corner.
       .esriSimpleSlider{         top:90% !important;         left:20px !important;      }
0 Kudos
VernWolfley
Occasional Contributor
Thanks I knew it was something simple I missed.
0 Kudos