Video over menus
![]() ![]() |
Something I just noticed...
|
![]() ![]() |
Only with changing the size of letters or size of menu. Flash is always on top... |
![]() ![]() |
then how the hell does this script manages to display those update notifications over the video? |
![]() ![]() |
I don't see the popup navbox on the upload button anymore for some reason (it used to be div#masthead-nav-user ul.yt-menubutton-menu but it's completely gone now) but the username popup navbox can be moved up a bit to fit above the video (in the css styles section of the script code around line 500):
// fix video pages - move popup navbox on user button between top of window and video
"div#masthead-utility ul.yt-menulink-menu { top:-28px }",
Or maybe it would be better to set wmode="opaque" on embed#movie_player (although I don't know if this method has any unwanted consequences). Try around line 1300 right after this existing code:
// Changes the Flash Player Quality attribute (depends on the Main Reload)
player.setAttribute("quality", flashQuality);
Code to add:
// Allow overlapping html stuff on the flash player
player.setAttribute("wmode", "opaque");
|
![]() ![]() |
thanks a lot!
|

