Sign in or Join FriendFeed
FriendFeed is the easiest way to share online. Learn more »
Jorge Escobar
Any HTML gurus out there that can help me with ideas to solve this issue?
fb-popup.bmp
As you can see, we have a video player on the page using <embed>. But Facebook Connect's code is rendered before it and we can't change the order (or set z-levels for the FB popup). Anything else you can think of? - Jorge Escobar
<iframe> the embed ???? (Not the best idea IMHO, but may work) - Roberto Bonini
Now that's an idea, Roberto... - Jorge Escobar
Let me know :) - Roberto Bonini
try something like: .flash { position: relative; z-index: 0 }. z-index only works on positioned elements so this might do the trick. also, on the overlay, might need z-index: 1 or something like that - chrisofspades
There is a concept called an iFrame shim that you can place over the video player (using javascript) when you know something else is going to interfere with it... http://bit.ly/2xUMl it's a pretty dirty hack but sometimes needed. - Ben Hedrington
Awesome, let me try some of these. You guys rock! - Jorge Escobar