Awesome, looks like that bit of code fixed the top rated display in firefox. In function widget($args, $instance) I added a line break to get it to display right in IE8.
replaced:
echo '<li>'.
'<a href="' . $permalink . '" title="' . $title . '">' . $short . '</a>'.
'<br />'.
'<div class="rw-ui-container rw-class-' . $rclass . ' rw-urid-' . $urid . '"></div>'.
'</li>';
with:
echo '<li>'.
'<a href="' . $permalink . '" title="' . $title . '">' . $short . '</a>'.
'<br />'.
'<div class="rw-ui-container rw-class-' . $rclass . ' rw-urid-' . $urid . '"></div>'.
'</li></br>';
I was also thinking that I might be editing the wrong part of rating-widget.php for the custom images. In function rw_attach_rating_js($pElement) I’m replacing:
' . $rw_settings[$rclass]["options"] . '
with:
{"size":"large","advanced":{"font":{"type":"calibri","size":"18px"}},"type":"nero", "style":"custom", "imgUrl":{"ltr":"https://www.guesswhattylerdid.com/wp-content/plugins/rating-widget/thumbs.png", "rtl":"https://www.guesswhattylerdid.com/wp-content/plugins/rating-widget/thumbs.png"}}