How To Change The Color Of A Progress Bar
I want to change the color of the last update text, by default it is black , is there a way to introduce some code to change the text color as i made for the bar text? Help me to i
Solution 1:
I assume you can wrap the Last updated: 7/01/2013
in <span>
tags, and give it a class, then you can style it however you want.
<spanclass="updated">Last updated: 7/01/2013</span>
CSS:
.updated {
font-size: 12px; //sizecolor: green; //colourfont-family:"Arial" //font
}
Post a Comment for "How To Change The Color Of A Progress Bar"