I have installed Judge.me reviews on my site but stars showing box icon

Savor theme

Hey @mdamranh.me

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
.jm-cluster span {
    font-family: JudgemeStar, monospace !important;
}
</style>

RESULT:


Hope that helps! If it did, a Like and Marking it as Solution goes a long way and helps others find the fix faster too.

Best,
Moeed

That’s because you have a font override rule to use “Hind Siliguri” with !important.

There is already a rule injected by the JDGM app

.jdgm-star {
  font-family: 'JudgemeStar' !important;
}

You can modify it like this to cover the all review star elements:

.jm-star-rating__font-icon, .jdgm-star {
  font-family: 'JudgemeStar', monospace !important;
}

Or, add this rule to the “Theme setting” (cog icon) → “Custom CSS” in “Edit theme”

It worked like magic! Thank you so much!!

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

Best,
Moeed