Could you add: &topTpl=`@FILE:assets/snippets/anythingRating/templates/anotherTopRated.tpl.html` in the snippet call which display the top rated list. Like for instance:
[!AnythingRating? &getTopRated=`1` &topDir=`worst` &atrGrp=`travel` &topNb=`3`
&topTpl=`@FILE:assets/snippets/anythingRating/templates/anotherTopRated.tpl.html`
&topTable=`maxigallery` &topDescrField=`descr` &topImageField=`filename`
&topLinkField=`gal_id` &topLabel=`travel photographies`!]
And create a new template file named
anotherTopRated.tpl.html in the anythingRating/templates/ folder.
[+atr.tpl:is=`result`:then=`<tr id="tr-[+atr.rank+]">
<td>[+atr.rank+]</td>
<td>[+atr.rating+]/[+atr.nbstars+] [+atr.lbstars+]</td>
<td>[+atr.nbvotes+] [+atr.lbvotes+]</td>
<td><a href="[+atr.baseurl+]index.php?id=[*id*]&pic=[+atr.ratingid+]">[+atr.title+]</a></td>
[+atr.usedescr:is=`1`:then=`<td>[+atr.descr+]</td>`+]
[+atr.useimage:is=`1`:then=`<td><img style="vertical-align:center" src="[+atr.baseurl+]assets/galleries/[+atr.link+]/tn_[+atr.image+]" class="thumbnail"></td>`+]
</tr>`+]
[+atr.tpl:is=`toprated`:then=`<div id="[+atr.groupid+]" class="topRatedList">
<p class="topLabel">[+atr.toplabel+]</p>
<table>
<tr class="toprated">
<th>[+atr.hdrank+]</th>
<th>[+atr.hdscore+]</th>
<th>[+atr.hdnbvotes+]</th>
<th class="toptitle">[+atr.hdtitle+]</th>
[+atr.usedescr:is=`1`:then=`<th class="topdescr">[+atr.hddescr+]</th>`+]
[+atr.useimage:is=`1`:then=`<th class="topimage">[+atr.hdimage+]</th>`+]
</tr>
[+atr.results+]
</table>
</div>`+]
In this example [+atr.baseurl+]assets/galleries/[+atr.link+]/tn_[+atr.image+] point to the thumbail adress of my maxigallery images. You probably need to adapt this image source.
and then defined or not the classes: thumbnail, topdescr, topimage for a better display.
Try it and let me know if it is ok.