Easy Flash Uploader Version: 1.5 or earlier
To customize the Browse and Cancel All buttons, you have to do two separate things. That’s because the Browse button is determined from a button sprite, and the Cancel All button is determined from CSS in the styles.css file. I have four preset styles and sprites for you to use. They are the following four colors:
- Blue (buttonSprite_blue.png)
- Green (buttonSprite_green.png)
- Red (buttonSprite_red.png)
- Grey (buttonSprite_grey.png)
To change the Browse button, all you have to do is go to the images folder and rename the respective file to “buttonSprite.png”. Next, you have to set buttonheight=23 and buttonwidth=100.
To change the Cancel All button, look for the commented out color scheme section you want, and replace the following declaration blocks as follows:
- button.cancelAll[type=button] with #normalButton
- button.cancelAll[type=button]:hover with #hoverButton
- button.cancelAll[type=button]:active with #clickButton
- button.cancelAll[disabled], button.cancelAll[disabled]:hover with #disableButton
Now, you are replacing the declaration block, NOT the selector. See CSS Definitions