Difference between revisions of "How to change the rating star images"
From JReviews Documentation
Line 3: | Line 3: | ||
[[File:RatingStars.jpg]] | [[File:RatingStars.jpg]] | ||
+ | |||
+ | To change which image file is used for rating stars, use this custom css and adjust the file name: | ||
<source lang="css"> | <source lang="css"> |
Revision as of 12:52, 7 March 2015
If you want to change the rating stars, you only need to define a different stars background image. There are several sprite images for rating stars available in JReviews themes:
To change which image file is used for rating stars, use this custom css and adjust the file name:
.jrRatingStarsUser, .jrRatingStarsEditor, .jrRatingStarsUser div, .jrRatingStarsEditor div { background-image: url(images/rating_bars.png); } /* rating form */ .ui-stars-star a { background-image: url(images/rating_bars.png); }
If you want to use your own stars image, place the image file into \theme_css\images\ folder in your theme.
Make sure your custom stars have the same dimensions, otherwise you will need to modify styles for dimensions also.