Here is the web page I'm working on: http://sebastianbiermanlytle.com/games.htm. The flashplayer is at the bottom. It's overflowing in both directions and sometimes covers the main menu. I tried using overflow:hidden on the container, but nothing happened. How do I hide the overflow?
Asked
Active
Viewed 123 times
0
-
1what is the wmode of the flash? http://stackoverflow.com/questions/886864/differences-between-using-wmode-transparent-opaque-or-window-for-an-embe – biziclop Jun 27 '12 at 21:28
-
I hadn't set it, but I just tried all three options - nothing happened with any of them – Cbas Jun 27 '12 at 21:32
-
Inspector says `.entry { overlow: hidden }` :) – biziclop Jun 27 '12 at 21:39
1 Answers
1
Remove position:absolute
and left:-25.5px
from css style of object
with id rpgEngine
and it will be OK.

pmaruszczyk
- 2,157
- 2
- 24
- 49
-
The problem is I need those attributes to keep the game in the middle of the screen – Cbas Jun 27 '12 at 21:41
-
2If you're really worried about centering, you could always use `margins`. After all absolute positioning won't center it correctly for different screen resolutions. – Roddy of the Frozen Peas Jun 27 '12 at 21:48
-