Thanks...seems to be ok now.
I should add, whilst I'm in the thread pointing out bugs, that this modification is fantastic and it's proving very popular on my site.
My ultimate aim now, as I also have both v3arcade and ibproarcade, AND the inferno quiz running, is to install vBcredits and integrate all four via that, as they are all compatible.
One small template bug, in
slots_main you have a rogue apostrophe. Up to date browsers seem to just ignore it, but in IE6 it makes the "Payout" block in slots have no background, instead of the
thead background it is meant to have.
Code:
<td style='vertical-align:top;width:150px;text-align:center;' 'class='thead'><p style='font-size:18pt;'>Payout<br/><span style='font-size:36pt;font-weight:bold;' id='outcome'></span></p></td>
Change to:
Code:
<td style='vertical-align:top;width:150px;text-align:center;' class='thead'><p style='font-size:18pt;'>Payout<br/><span style='font-size:36pt;font-weight:bold;' id='outcome'></span></p></td>
The rogue apostrophe is just before
class='thead'.
Really minor but worth noting.