Yep, I use IE...and Yep that fixed it.
For those that have the same problem...
Edit template casino_roulette_main
find:
Code:
<td colspan='3' style="padding: 10px;vertical-align:top;color:black;height:400px;background-image:url('casino/cards/cloth.gif')">
<table>
<tr>
<td style='width:300px;'>
<div>
<img id='w' src='casino/cards/rwheel.png' alt='' />
<img id='i' src='casino/cards/rball.gif' alt='' style='z-index:2;position:relative;top:-30px; left:50px;' />
</div>
</td>
<td align='center' style='font-size:22pt;color:black;font-weight:bold;width:300px;'>
$vbphrase[casino_currency_marker]<span id='cash'>$cash</span><br/>
<span id='controls'>
<img src='casino/cards/spin.png' alt='Spin' onmousedown='spinwheel()' style='cursor:pointer' /><br/>
<img src='casino/cards/clear.png' alt='Clear' onmousedown='resetbets()' style='cursor:pointer' />
</span>
</td>
<td rowspan='2' style='vertical-align:middle;'>
<table >
$t_chips
</table>
</td>
</tr>
<tr>
<td colspan='2'>
<div id = 'chips'></div>
<div style='height:350px;width:620px;'>
<img id='board' src='casino/cards/rboard.png' alt='Roulette Board' onmousedown="snaptoboard(event)" style='position:absolute;cursor:pointer;'/>
</div>
</td>
</tr>
</table>
</td>
<!-- <td style="background-image:url('casino/cards/cloth.gif')"> </td> -->
replace with:
Code:
<td style="padding: 10px;vertical-align:top;color:black;height:400px;background-image:url('casino/cards/cloth.gif')">
<table>
<tr>
<td style='width:300px;'>
<div>
<img id='w' src='casino/cards/rwheel.png' alt='' />
<img id='i' src='casino/cards/rball.gif' alt='' style='z-index:2;position:relative;top:-30px; left:50px;' />
</div>
</td>
<td align='center' style='font-size:22pt;color:black;font-weight:bold;width:300px;'>
$vbphrase[casino_currency_marker]<span id='cash'>$cash</span><br/>
<span id='controls'>
<img src='casino/cards/spin.png' alt='Spin' onmousedown='spinwheel()' style='cursor:pointer' /><br/>
<img src='casino/cards/clear.png' alt='Clear' onmousedown='resetbets()' style='cursor:pointer' />
</span>
</td>
<td rowspan='2' style='vertical-align:middle;'>
<table >
$t_chips
</table>
</td>
</tr>
<tr>
<td colspan='2'>
<div id = 'chips'></div>
<div style='height:350px;width:620px;'>
<img id='board' src='casino/cards/rboard.png' alt='Roulette Board' onmousedown="snaptoboard(event)" style='position:absolute;cursor:pointer;'/>
</div>
</td>
</tr>
</table>
</td>
<td style="background-image:url('casino/cards/cloth.gif')"> </td>
Thanks Andrew!!