dreyescat / bootstrap-rating

Bootstrap Rating is a jQuery plugin that creates a rating control that uses Bootstrap glyphicons for rating symbols.
http://dreyescat.github.io/bootstrap-rating/
MIT License
192 stars 78 forks source link

Size of Stars #15

Closed BrewDawg closed 9 years ago

BrewDawg commented 9 years ago

How can we change the size of the glyph icons, I've can't figure out how to make them larger ...

dreyescat commented 9 years ago

What I would do is to create a new CSS style with a larger font-size and add it to the filled and empty list of classes, along with the glyph classes.

For example:

<style>
  .large-rating {
    font-size: 2em;
  }
</style>
<input type="hidden" class="rating" data-filled="glyphicon glyphicon-heart large-rating" data-empty="glyphicon glyphicon-heart-empty large-rating"/>

Let me know if it is not clear enough. I will try to add an example to the demo page later.

dreyescat commented 9 years ago

Just added the example I promised. It has custom size and color. Check demo page.