How to change simple slider thumb image?

3112
2
Jump to solution
08-31-2015 09:11 PM
HumzaAkhtar
Occasional Contributor II

Hi,

I want to change this slider thumb image but I cannot figure out how to. Can someone point me to the relevant css/html file please. Thanks!!

0 Kudos
1 Solution

Accepted Solutions
HerdisGudbrandsdottir
New Contributor III

Hi Huzma,

If you open your app in chrome and right click thumb - choose Inspect Element - from here you can see the .css classes and files.

In your case look at .claro .dijitSliderImageHandle and dijitSliderImageHandleH - override these in your own .css

claro:

http://js.arcgis.com/3.14/dijit/themes/claro/claro.css

.claro .dijitSliderImageHandleH

As an example: in Launchpadtheme for web app builder this style is overrided:

overrided claro:

themes/LaunchpadTheme/styles/default/css/dojo-override.css

.claro .dijitSliderImageHandle

View solution in original post

2 Replies
HerdisGudbrandsdottir
New Contributor III

Hi Huzma,

If you open your app in chrome and right click thumb - choose Inspect Element - from here you can see the .css classes and files.

In your case look at .claro .dijitSliderImageHandle and dijitSliderImageHandleH - override these in your own .css

claro:

http://js.arcgis.com/3.14/dijit/themes/claro/claro.css

.claro .dijitSliderImageHandleH

As an example: in Launchpadtheme for web app builder this style is overrided:

overrided claro:

themes/LaunchpadTheme/styles/default/css/dojo-override.css

.claro .dijitSliderImageHandle

HumzaAkhtar
Occasional Contributor II

Thanks   That worked like a charm !!