Assuming you're using jQueryUI, the background progress indicator driven by the CSS attribute is a solid image.
The style attribute is .ui-widget-header
, so you need to change the background image for this. In the title of your document (or if you donβt have access to the head, then the body will do it) add the following if you want a fantastic background image:
<style type='text/css'> .ui-widget-header { background-image: url('link-to-a-new-gradient-bar-here.png') !important; } </style>
or, alternatively, for a simple one-color background:
<style type='text/css'> .ui-widget-header { background-image: none !important; background-color: #FF0000 !important; //Any colour can go here } </style>
!important
requires the new style to overwrite existing CSS.
Also, your HTML progress bar is missing an end tag.
Death source share