Thread
:
Flash on top of HTML help cant find a solution
View Single Post
Nutrox
17 Creative Assets
2009-01-09 #
4
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.
Nutrox
View Public Profile
Visit Nutrox's homepage!
Find all posts by Nutrox