In gd star ratings plugin, they take a css sprite image for displaying the status of the stars and adjust its width to show how many stars an item is rated by.
They use the image "gd-star-rating/stars/oxygen/stars20.png" for example in the background.
For example, I have 3 stars so it takes 60px width.
.starsbar.gdsr-size-20 a.s3 {
width: 60px;
}
and the global code is:
.gdsr-oxygen .starsbar.gdsr-size-20 a:hover {
background: url('../stars/oxygen/stars20.png') repeat-x 0px -20px !important;
}
My question is, how do I change the colors of these stars using my custom image? I want to have
red - 1 stars yellow - 2 stars
and gradually, green for 5 stars.
Is it something achievable?
