Menu Bar behind mp3 Player

Hi everybody, I recently embedded some mp3 players into my website and was very satisfied with them.  But I noticed that if you hover over the menu on the left side of the screen, the sublinks will pop up and be underneath the music players.  Does anyone know exactly how to move the menu bar infront of the mp3 players? And I suppose in this case..move them infront of anything else?  Here is the link. http://celestialapple.zxq.net/music/epoch.html

Hi,
in this case I would use a "spryMenuHorizontal" instead of your vertical.
The other possibility is of course a regulation with your "padding". So you could move down all music players. The space above you could use for more explanation.
. Content (
/ * Padding: 10px 0; * /
padding: 200px 0;
width: 80%;
Additionally you could place your music players into the middle or to the right. This is done by a simple direct formatting. Look here:
HTH
Hans-G.

Similar Messages

  • "Scripts" suddenly shows in DVD Player Menu Bar

    I just noticed that a Script icon now appears in the menu bar for DVD Player. It's between the "Window" and the "Help". Also, when I pause the DVD player, it no longer shows the scene number with scroll bar, and elapesd time. I have a MacBook Pro with front row installed. Could this be a result of the any update? Seems to be on all of my computers. Don't remember this as showing before.
    GG

    The DVDs in question are DVD-Rs created on a stand-alone Panasonic DVD recorder. My friend connects TiVo to the Panasonic using the RCA jacks, the show starts in TiVo and he pushes "Record" on the Panasonic. Each recorded session is an item in the menu, but they display black for me. Not on his Windows and not on my dad's G3 iBook.

  • Spry Menu Bar hides behind embedded windows media player

    Hi guys. My Spry Menu Bar hides behind my embedded windows media player when I go over the menu with my mouse. Below is the code I used to embed my player. How can I make it transparent? Thank you!

    To the Params in your object tag, add this:
    To the attributes in your embed tag, add this:
    wmode="opaque"
    Note that z-index is totally irrelevant to Flash. also note that the Adobe Flash Player is wildly inconsistent from browser to
    browser and from OS to OS, which is one of the more valid reasons for Apple abandoning the technology's support on its touch
    devices.
    Al Sparber - PVII
    http://www.projectseven.com
    Dreamweaver Menus | Galleries | Widgets
    http://www.projectseven.com/go/hgm
    The Ultimate Web 2.0 Carousel

  • Spry menu bar hidden behind embedded windows media player in IE but Not Firefox

    Hi ppl.. My spry menu bar submenus are hidden below my embedded windows media player when I go over the menu. Is there anything I can do to solve this. This doesn't happen in Firefox.(The submenu appear on top of the embedded player) Pls help.. Thank you!
    Here's my spry menu bar css code:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 9em;
        float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: 9em;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 9em;
        border-bottom-width: thin;
        border-bottom-style: solid;
        border-bottom-color: #CCC;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        background-color: #333;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        color: #FFF;
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: bold;
        padding-top: 1.1em;
        padding-right: 0.75em;
        padding-bottom: 1.1em;
        padding-left: 0.75em;
        text-align: center;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        color: #000;
        background-image: url(../images/navimg2.gif);
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        color: #000;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(../images/navimg2.gif);
        background-repeat: repeat-x;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inline;
        f\loat: left;
    Here's my embedded windows media player code.
    <OBJECT ID="MediaPlayer" WIDTH="425" HEIGHT="344" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject">
              <PARAM NAME="FileName" VALUE="aqeedah1v7.wmv">
              <PARAM name="autostart" VALUE="true">
              <PARAM name="ShowControls" VALUE="true">
              <param name="ShowStatusBar" value="true">
              <PARAM name="ShowDisplay" VALUE="false">
              <EMBED TYPE="application/x-mplayer2" SRC="aqeedah1v7.wmv" NAME="MediaPlayer"
    WIDTH="425" HEIGHT="344" ShowControls="1" ShowStatusBar="1" ShowDisplay="0" autostart="1"> </EMBED>
    </OBJECT>

    Add
    <param name="WindowlessVideo" value="-1">

  • Mini player in menu bar

    Hi
    not to sure if the request has been already raised (i am sure it has as i can not be the only one)
    I actually gave apple numerous times feedback on that request but it seems they are not reading it or not willing to do it. Basically my request is to have the option to show the Itunes mini player in the menu bar, so it is easily to access, it is out of the way when using other apps.
    the mini player is nice but for me it is always in the way . I found a third party software called now playing but it is limited somehow
    anyway hope apple thinks about it
    bernd

    Take a look at http://www.bestshareware.net/download/playwatch-for-mac.htm.
    Or maybe you'd like http://playwatch.en.softonic.com/mac.

  • Authoring DVDs for Windows Media Player: right hand menu bar

    Hi, I'm using DVD Studio Pro 4 to author a DVD. It's quite a simple one, just an option to play the whole video or to go to the chapter index, where there are 9 chapters to choose from.
    I've noticed in Windows Media Player that, although the DVD works fine and the video and chapter names come up on the menu as expected, in the player's menu bar on the right you get "Untitled DVD" and then "Title" 1-10 instead of the video and chapter names. Is there any way of authoring the DVD so that this right menu bar displays meaningful names? Or is this something that needs to be done in the player?

    The info that Windows Media Player uses to identify the disc is not stored on the disc. Windows Media Player accesses on on-line database to get the DVD name, exactly the same way that iTunes get CD names. If you do not have a commercial DVD then all that will ever appear is, "Untitled DVD".

  • Widows Opening Behind Menu Bar in Safari 3.0.4--WHY!!!

    I've been doing some Day-Trading lately and when I open up extra windows to monitor stock activities, there is one that opens behind the menu bar and I can't grab the top of it to move it around. It's irritating as ****!! Does anyone know why this is happening or how to fix this?

    I thought of that but, the Ameritrade site uses it's own web apps with their own appearance. Ugly Window's look actually. The only way to move them is with the top of their window. It does not do this on my sister's MBP with 10.4.10. However my iMac did it exactly the same with Tiger. So I don't think it's a Leopard problem. Guess I'll ask a Genius...cough...cough...

  • Why is the background behind my menu bar see-through. Can I change this?

    The screen behind the navigation bar and menu bar is see-through, but blurry. it is driving me nuts. Can I change it?

    Yaaay!
    Thanks - a pity I didn't do a search before wasting about 3 hours.
    Rgds, Tsimsi

  • When a document gets hidden behind the menu bar and you can't move it

    Whe, say, a Word document opens up so it's own header is behind the Apple Finder menu bar at the very top of the screen, you can't click on the header to move it anywhere on the screen. Like it's stuck there.
    How Can I access documents like that?
    I think this happens to me because I have a second screen (Apple 20") and when I drag documents from this screen to the PowerBook screen, this has a tendency to happen.

    I tried to solve this problem using the plist method described at the following thread: http://discussions.apple.com/thread.jspa?messageID=1408414&#1408414
    This method did not work.
    The sucessful procedure is to access the small gear (or wheel?) icon in the bottome left corner of the character palette and select "Minimize Palette on Application Switch". Then change focus to another program that you are running, or just open a new application. This will cause the palette to shrink into a window so small that only one character is displayed. In my case the window also moved to a new position near the bottom of the screen. In this new position the palette is accessible and can be moved freely. I have even deselected the minimize feature and closed/reopened the palette successfully.
    I hope this post can save someone else out there a lot of time if this happens.

  • Spotlight menu hidden behind menu bar in Leopard when "Show Desktop" Expose

    The Spotlight menu is partially hidden behind the menu bar in Leopard when using "Show Desktop" (part of Expose). I tried using "Show Desktop" with keyboard shortcut keys and screen corners, and this behavior still exists. I tried toggling Spaces on and off, and the behavior still exists.
    This has been an issue since day one of using Leopard, and on every bootup. It's absolutely reproducible, and this is a bug, unless someone can prove me wrong? (Hopefully, I'm wrong.)

    Fixed in 10.5.2.

  • Spotlight hidden behind menu bar in Leopard?

    I updated to Leopard three days ago with no problems. Today, however I suddenly find my spotlight drop down box is three quarters hidden behind the menu bar and I cannot get it to appear in front of it. Weird. Does anyone have an idea what's going on? Thanks......!

    I had the same issue and tried all the suggestions (desktop from expose, enable/disable spaces, etc), but I had some important things going on and didn't want to logout. I pressed the display key on my Macbook. That's the one that switches from mirrored displays to extended desktop. That did it.
    It's the F7 key on my 8 month old macbook. Not sure if the new ones have it, but try "detecting displays" (I use dual displays so it sort of makes sense to me... you may not have this enabled if you only use the one display).
    Cheers!
    -Neil

  • Window hidden behind menu bar

    Some of the windows have become semi hidden behind my menu bar, im really not shure how i managed to do this; But it is really annoying.
    Now i cant move the windows, and thats a drag. You can see what i meen on this screenshot:
    http://img251.imageshack.us/img251/5491/bilde22mo3.png
    MacBook Mac OS X (10.4.7)
    Is there any solution to this? I tried GeekBind to move the window, but that didnt work either.

    Also, many programmes have a "Window" > "Zoom" menu option, which usually causes the front window to resize to dimensions suitable for the current monitor resolution...

  • Nav/Menu bar hidden behind images

    I placed my nav/menu widget in my master page. I have several layers in each page that I would like to arranged behind the nev/menu bar so I can still utilize it. Muse doesn't seem to let me push the images back behind the nav bar. Currently my photos are covering the nav bar so it can't be utilized. Help! Thank you.

    With the release of Muse 4.0 today, Master page elements can now layer in front of content on those pages to which the Master has been applied. To re-order Master page content select elements on the Master page, right-click and select "Move to Master Foreground" or "Move to Master Background" from the popup menu. Alternatively select elements on the Master page, then select Object > Move to Background or Foreground in the Muse application menu. All elements in the Master page set to "Move to Master Foreground" will appear on top of all elements in the Page.
    Please refer to Muse release notes for more information on this.
    http://helpx.adobe.com/content/help/en/muse/release-note/adobe-muse-re lease-notes.html
    Thanks,
    Vinayak

  • Hi, i've just bought my first macbook pro, i just installed office mac and when i open the page i cannot see the minimise maximise and close buttons as it's hidden behind the apple menu bar, also when it's at full screen, those buttons do not appear

    hi, i've just bought my first macbook pro, i just installed office mac and when i open the page i cannot see the minimise maximise and close buttons as it's hidden behind the apple menu bar, also when it's at full screen, those buttons do not appear

    Try to edit the size of the page using the sides of the page, or if you are desperate, force quit using command-Q. In full screen put your cursor on the top of the page, and the menu bar will appear. If it doesn't keep "pushing" it up until it does. Hope this helps!

  • Title Bar hidden behind Apple Mac menu bar

    Hi
    I am using Elements Organizer 12.1 and, for some reason, the title bar is hidden behind my Apple Mac menu bar.  Does anyone know how to click behind the menu bar so I can access the Elements title bar?
    Thanks
    Richard

    The first thing to try is to go to system preferences>displays and set your screen resolution down as far as it will go. You may need to try a few different settings, but eventually it may snap back into place and then you can go back to the correct setting for your display.

Maybe you are looking for

  • Disabled Apple ID? Wrong birthdate? Read this, I fixed it on my iPhone 4

    My apple ID on my iPhone 4 to defaulted to my other email address and my birthdate was input wrong. After months I fixed it last night. It was disabled for security. Figuring this out has taken months and ruined many days to frustration. I hope this

  • Problem sending texts

    I'm having a problem sending texts to certain numbers. I have been able to send them before, but not any more. Delivery report tells me it's been delivered, but the recipient says nothing has arrived. It only seems to happen withcertain numbers.

  • Backspace not working

    On some of my systems, when I am in SQL*Plus, the backspace does not work. There must be a setting in the login environment, that affects this. How can I fix this in the profile, without having to type in something everytime I log in ? This is on Lin

  • How to encode FCP files to Windows Media files by using Discreet Cleaner?

    Do you know how to encode from FCP to Windows Media files in Discreet Cleaner 6.0? Which is the right settings? I got errors when I tries In beforehand thank you very much for your answer

  • Spooling stops

    When I attempt to print from a Quad G5 Mac w/4 gigs of RAM to an Epson 7600 printer using Photoshop CS3, spooling starts and then almost immediately stops. I am running Leopard 10.5.2 and using the latest driver available for my PPC machine from Epso