View Single Post
Nutrox's Avatar Nutrox Nutrox is offline Super Moderator 17 Creative Assets 2009-01-09 #4 Old  
It is possible to fix but depending on how your page is structured this might not be suitable for you.

( 1 ) You set the CSS position value of the Flash movie to absolute, and set the z-index value to 1

( 2 ) You set the CSS position value of the HTML element containing the links to absolute, and set the z-index value to 2

Code:
#flash
{
    position:absolute;
    z-index:1;
}

#linkbox
{
    position:absolute;
    z-index:2;
}
Apart from that there isn't much you can do as far as I know.
Reply With Quote