The CSS code in the play-asia add section of the column on the left is screwed up in Opera, and possibly a few others. It happens on the following line:
Code:
<div class="banner_div" style="width: 3px; text-align: left; border-style: solid; border-width: 1px; border-color: #888888; padding: 4 4 4 4; background-color: #ffffff;" >
The problem is, in fully CSS compliant browsers (unlike Firefox and IE) "width: 3px;" is taken as an ultimatum. It makes it so even if there is stuff inside the border, the space inside the border will not stretch, but will be forced to 3 pixels width (plus the borders). Here is a simple fix:
Code:
<div class="banner_div" style="text-align: left; border-style: solid; border-width: 1px; border-color: #888888; padding: 4 4 4 4; background-color: #ffffff;" >