Upload: Image Upload 'Fill' Color Change?:

CritiKiL

Active member
How can I change the color of the 'fill' when an image is uploading (showing the percentage of upload)? Mine is currently a grey but would love to give it another Hex color assignment ;-)
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
.AttachmentEditor .AttachedFile .ProgressMeter
{
	background-color: #123456 !important;
}

.AttachmentEditor .AttachedFile .ProgressMeter .ProgressGraphic
{
	background-color: #123456 !important;
}

Specify any color you want. The first one is for the background of the bar. The second one is for the color that fills in the bar as the attachment uploads.
 
Top Bottom