Guys, I have a really annoying issue. So i have java applet and css drop down, but when i hover over the tabs to get the dropdown effect, they go behind the java applet.
Is there anyway to fix this? This is really bothering me..
Annoying issue.
-
- Posts: 534
- Joined: Thu May 05, 2011 8:19 pm
Re: Annoying issue.
try css z-index. ITs teh only thing i can think of. sorry
Ill think more later, late for college
Ill think more later, late for college
I don't like to brag, but I wasn't circumcised. I was circumnavigated.
Want to learn something new? Or maybe reinforce what you already know? Or just help out? Please subscribe to my videos: http://goo.gl/58pN9
Want to learn something new? Or maybe reinforce what you already know? Or just help out? Please subscribe to my videos: http://goo.gl/58pN9
Re: Annoying issue.
Nope, that doesn't work with java applets. Thanks for trying though, appreciate it.bowersbros wrote:try css z-index. ITs teh only thing i can think of. sorry
Ill think more later, late for college
Re: Annoying issue.
If Java applets work the same way as flash does. There is no way since they are rendered after the page using somethign like opengl.
-
- Posts: 534
- Joined: Thu May 05, 2011 8:19 pm
Re: Annoying issue.
Note, this is incredibly bad practice.. But
Place the applet in an iframe, which you include. Then with the iFrame set the z-index to 1 and with the menu or whatever, set it to anything larger. Like 50.
That should hopefully fix your issue?
Place the applet in an iframe, which you include. Then with the iFrame set the z-index to 1 and with the menu or whatever, set it to anything larger. Like 50.
That should hopefully fix your issue?
I don't like to brag, but I wasn't circumcised. I was circumnavigated.
Want to learn something new? Or maybe reinforce what you already know? Or just help out? Please subscribe to my videos: http://goo.gl/58pN9
Want to learn something new? Or maybe reinforce what you already know? Or just help out? Please subscribe to my videos: http://goo.gl/58pN9
Re: Annoying issue.
Yes, there is a way to do it with flash.jacek wrote:If Java applets work the same way as flash does. There is no way since they are rendered after the page using somethign like opengl.
and i'll try what you said bower
Re: Annoying issue.
You could try placing the Java applet inside a div with a position: absolute and the z-index property.
"Creating layers with the z-index:
Elements must be positioned absolutely or be a descendant of that positioned element.
An element with a higher z-index appears in front of an element with a lower z-index."
"Creating layers with the z-index:
Elements must be positioned absolutely or be a descendant of that positioned element.
An element with a higher z-index appears in front of an element with a lower z-index."