Here is the fix:
In your v3ARCADE_PLAY do the following edits.
Below:
Quote:
#fade { /* This is the "dimmed" layer which fades in when the lights go off */
display: none; /* Set the display to none which hides the layer */
background: #000000; /* Set the color to black */
position: fixed; left: 0; top: 0; /* Set the position to fixed so when the user scrolls it stays with them */
width: 100%; height: 100%; /* Set the width and height to 100% of the browser window */
opacity: .90; /* Set the layer's opacity to .90 which is 90% */
z-index:100; /* Set the height on the Z axis to 100 which is below the "light switch" layer */
}
|
Add:
Quote:
#standout{
position:relative;
background-color:#ffffff;
z-index:1000;
}
|
Below:
Quote:
<td align="center" class="blockbody" valign="top">
<!-- main -->
|
Add:
Above:
Add:
Now save the edits.