Problems with sub menus in Internet Explorer

My menu bars work great in Chrome and Firefox however my submenus are jacked up in Internet Explorer. Can someone please give me some direction? Thanks.
The website is www.aptyssolutions.com

Have a look here http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#one
Then have a look at what you have got
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: block;
        f\loat: auto;
        background:
and
/* 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%;
    cursor: default;
    width: AUTO;
    position: absolute;
    left: -1000em;
   top: 23px;
    height: 35px;
    background-image: url(/images/bluebar.png);
There is more, but the above is most likely what is causing the problem.
I suggest that you resurrect the original SpryMenuBarHorizontal.css and start again.

Similar Messages

  • A problem with this webpage caused Internet Explorer (IE9) to close and reopen the tab

    I have IE9 (using 32-bit version) installed on a relatively new laptop with Windows 7 64-bit. Up until last weekend IE9 worked fine and Flash Player worked fine too.
    At the weekend a webpage asked for Flash Player to be updated - which I did. Ever since then whenever I go to a webpage needing Flash Player I get the message "A problem with this webpage caused Internet Explorer to close and reopen the tab". This happens twice and then an IE9 error page.
    I have read the discussions in here about the problems with Flash Player 10.3 and have tried the various solutions. I have updated to 10.3.181.16 having tried 15 and 14 previously. Same problem.
    I have reset IE9. Same problem.
    I have disabled all add-ons which stops the problem. If I enable just the Flash Player add-on then the problem recurs. Since there are so many webpages that use Flash I do not want to run my browser without this add-on running.
    If I enable the add-on and run IE9 using software rendering instead of GPU rendering then I don't get the problem. However, this isn't exactly making the best use of the resources on my laptop.
    This may well all be related to the 10.3 problems but no one seems to have mentioned having a problem with tabs closing and reopening so I thought I would post on here to check.
    Any suggestions for how to solve this (other than using software rendering)?

    Thanks again for your reply. I appreciate the time you have taken to respond.
    I think, however, you misunderstand the problem. IE9 does not reopen the tabs on just one website - it is doing this on every website that needs Flash Player. Therefore, running in Compatibility mode is not an option. In fact, because IE9 reopens the tabs so quickly and then ends up with an error page, I cannot even click the Compatibility button anyway.
    I could use ActiveX filtering - true. All that this means is that Flash does not play on any of the websites. When I want to re-enable ActiveX for a particular website where I need to see the Flash Player item, this just triggers the error.
    This problem also happened on .14, .15 and well as the current .16 version. It did not happen with the previous version of Flash Player that I had on the system (version 10.2 I think).
    The fact is that either Flash Player or IE9 or both is/are broken. The two choices I am still left with are:
    1. Use software rendering (which contradicts the latest advertisements for IE9 about unleashing the power of IE)
    2. Use another browser - I have no problems with either Firefox or Chrome

  • Problem with ExternalInterface.call and Internet Explorer

    Hi, I´m developing a site, (
    www.gen-studio.com/avelart2
    ), and I´m using a swf to display a set of thumbs that when
    clicked show an item and its description on the browser, those
    items might be images or video, everything works fine with the
    images.
    And actually it works fine with the videos too, when using
    Firefox, but when I test the page on Internet explorer it just
    doesn’t work!
    On principle let me describe how it´s supposed to work,
    a thumbnail when clicked sends an id number to javaScript using
    ExternalInterface.call(“myFunction”,myId); -I´m
    using AS3 for the swf´s-
    the javaScript file has already loaded (ever since$(
    document).ready) a XML file which uses to match the id with a file
    and the description, if the item to show it´s a video, then it
    creates a variable which holds a string with the proper html to
    embed a swf (a swf movie player that resides just next to the HTML
    file), when loaded, the swf movie player uses
    ExternalInterface.call() to ask for the source of the video that
    has to play, and that function is as follows:
    setVideo: function(){
    alert("hola");
    return comun.miVideo;
    (The alert(“hola”); is just to test that the
    function is being called), which it is, but it returns null as a
    value instead of the proper string, and this happens only on
    internet Explorer, but works correctly on Firefox.
    I´ve been reading all day about the subject and found a
    few interesting things, which though have made me narrow my
    problem, they haven´t just provided me with a solution, what I
    found so far:
    -I must have in account flash security issues: Checked (my
    actionScript follows:)
    import fl.video.*;
    import flash.external.ExternalInterface;
    flash.system.Security.allowDomain("*");
    var vid:FLVPlayback = this.miPlayer;
    vid.source =
    flash.external.ExternalInterface.call("comun.setVideo");
    -ExternalInterface and Internet explorer don´t work
    properly when tested locally: Checked (I have a server on my PC and
    I´m testing the site as well in the above direction).
    -The object tag holding the swf must have a proper id
    attribute: Checked.
    -It´s super important the way the object tag is formed:
    Checked, and I also tested the tag separately (I put it directly in
    the HTML instead of adding it via javaScript) and it worked as
    expected in both Firefox and Internet Explorer, which leads me to
    believe:
    -I read somewhere that if you add the object tag by using
    innerHTML or appendChild, returning values from javaScript to swf
    won´t work, but I couldn´t find an explanation nor a
    solution.
    Well, as I said now I´ve been looking all day for an
    answer, so I really hope you can help me or give me some advice on
    the subject, thank you so much for your time!

    Hi! it solved itself !! (nahh, I wish), but it indeed had a
    solution, it was something quite simple, and I don´t really
    understand why it was not working in the first place, but here is
    the thing:
    I´m learning jquery and this is the first proyect
    I´m officially using it, so I was using
    $('#myDIV').append("string"); to embed the swf, (and it was working
    perfectly on Firefox), so since I had narrowed my problem to those
    lines, I decided to try some good-old-fashioned-javaScript and
    changed it for: var myDiv =
    document.getElementById('thatParticularDiv'); myDiv.innerHTML =
    ('string'); and it worked both in Firefox and IE !!!!!! :)
    I´m quite happy about it, and if someone knows
    what´s the issue with my jquery approach I would love to hear
    it. THANKS !!

  • Problem with jinitiator in my internet explorer

    I am using Forms and Reports 10g and Database 10g. Installed both successfully.
    When i try to run a form(even Test.fmb) , it is not working in internet explorer.... i still could not understand the problem. But, i noticed one thing... either, JInitiator is not installed or it is not invoking automatically when i run the forms... this is the problem.. can someone help me on this please?

    I am using Forms and Reports 10g and Database 10g.
    Installed both successfully.
    When i try to run a form(even Test.fmb) , it is not
    working in internet explorer.... i still could not
    understand the problem. But, i noticed one thing...
    either, JInitiator is not installed or it is not
    invoking automatically when i run the forms... this
    is the problem.. can someone help me on this please?When you say "it is not working..." what do you mean??
    What is the error message raised??
    Does the browser crashes??
    Keep in mind that to run a form from the forms builder (including test form) you must start the OC4J instance.
    Tony

  • Problem with WIndows 7 and Internet Explorer 11

    I have Windows 7 Pro and just completed installing Service Pack 1.  I checked the the System information and it indicates that the Service Pack did in fact install.  I am now trying to install the latest version of Windows Explorer 11 and when
    I try, I get a message that states "Operating System is not Supported" "you need Windows 7 SP1 or Server 2008 R2 SP1 to install Internet Explorer 11.
     I have worked on this problem for about six hours.  Reinstalled Service Pack 1 and anything else I can think of.  I can't get Internet Explorer 11 to install.  I use GMail and it is advising me that I need to upgrade to the lates version
    Internet Explorer.
    Can anyone give me some advice?

    Which version of Internet Explorer are you currently running? And how are you trying to install IE 11?
    Although there are standalone installers for IE, it's usually best if you can install it through Windows Update. From memory I think IE 11 can only be installed on top of IE 9 or 10. 
    Please can you open Windows Update, and click Check for updates. Once this has finished checking, look in both Important and Optional updates, and see if an updated version of IE appears.
    Regards,
    James Henderson
    MTA: Windows Server Admin Fundamentals
    MTA: Networking Fundamentals

  • Problem with af:showPrintablePageBehavior and Internet Explorer

    Hi, I am using JDeveloper 11.1.2.1.0.
    I have a table with the iterators Range size = -1 and the tables AutoHeightRows and FetchSize set to estimatedRowCount.
    I have added a commandButton with af:showPrintablePageBehavior to the page.
    The table I am printing generates 4 pages in Firefox, Chrome and Safari. In Internet Explorer 8 and 9 I only get 1 page. (The metadata on the page also say page 1 of 1. )
    Unfortunately we have some customers that use Internet Explorer, so how do I make this work for them?
    All data is viewed at the printable page in IE, but when printed there is only 1 page.
    Regards,
    Thomas H.

    Hi,
    not sure this is an issue with the showPrintablePageBehavior if IE shows all data in the browser after using this behavior. The print functionality is owned by the browser and obviously it doesn't get to all of the page content (which I think is out of the ADF Faces scope). You may try and file a Service Request with customer support for them to have a look. However, if the showPrintablePageBehavior properly displays the data, then I am not sure what we can do to make the browser native print functionality working
    Frank

  • Problem with hidden items and Internet Explorer

    Hello,
    I have discovered a very strange behavior of my Page in which are a few hidden items!
    In a region six hidden items produces an empty row! But this empty row is only be displayed in Internet Explorer! In Firefox everything looks fine!
    Does anybody have done the same experiences about that?
    Is there a solution for this problem?
    Regards,
    Tim

    Tim,
    I have discovered a very strange behavior of my Page
    in which are a few hidden items!
    In a region six hidden items produces an empty row!An empty row where? In a report? In a form?
    But this empty row is only be displayed in Internet
    Explorer! In Firefox everything looks fine!Although hidden items are 'hidden' they're still part of the HTML and consume space within the HTML source of the page. Is ApEx just putting these items inside a td tag that shows up in the browser? Maybe you could post an example on apex.oracle.com.
    Earl

  • Problems with flash player through internet explorer on MacBook

    Here is the problem:
    I downloaded internet explorer for mac to use it in some websites that requires this browsers. when I opened the site a pop-up message came out saying that I need flash player plug in so I went to that website of adobe that was suggested using internet explorer but it freezed. so I went to the adobe website and I used Safari this time and I downloaded the flash player installer . I installed it & it was successfull . I went back to use the internet explorer to the earlier website that requires internet explorer and I got the same plug-in required window. I'm new to mac I don't know what to do. help me please.
    I have got MacBook Mac OSX 10.6.4

    IE for Mac hasn't been supported by microsoft for 7 years. I'm surprised that it works at all. There's probably a conflict between the flash and the browser.
    A better way to run IE may be installing windows via crossover, boot camp or vm on your MacBook.

  • Problem with history manager on internet explorer

    Hello,
    I'm using the flex's history manager to save a state of my
    application. When I use firefox everything works almost fine, but
    when I use internet explorer nothing works. I tried both 6.0 and
    7.0.
    Do anyone know why does this happen and how can I workaround
    it?

    Hi Konstantin,
    Searching through our bugbase, I found this bug which sounds
    like the issue you're having:
    history management doesn't work when previewing a local file
    in IE:
    http://bugs.adobe.com/jira/browse/FB-443
    This should work fine when using an http url. If not, can you
    please log a bug?
    thanks,
    Sharon

  • Problem with dreamweaver site on internet explorer

    Hi all
    Help required! i have a website up and running www.villaneptunecyprus.co.uk which works fine in most browsers apart from Internet Explorer!
    If you have a look you will see a slider banner picture come across the screen  which then slides out to be replaced by another and so on. However in IE the first banner slides in and then out and then all the text disappears and the website , for want of a better word, just stops. You can still navigate to other pages in the site but the same thing happens eventually.
    Just cannot quite see what is going wrong.....any suggestions gratefully received!!
    Regards
    Neil

    Code errors are responsible for 90% of browser display issues.
    Start by fixing your code.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fpromanageidaho.com%2F
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Problems with webfont layouts in Internet Explorer 7

    Hello,
    I've created this website in Dreamweaver CS6 using webfonts.
    http://www.fjgpharma.com/index.html
    It's fine on all browsers except IE 7 where the type on the following pages isn't displayed correctly:
    • Index -  the blue sub-heading is split onto two lines when it should be on one
    • About - 'technical management' is displayed as some sort of link
    • Services - indents are misaligned
    I've already added the following code:
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    Can anyone offer me any advice on how I can fix this?
    Thank you!

    With "technical management" being displayed as a link, I'm guessing you have some sort of Malware or downloaded Junkware infecting your version of IE7. There is no link in the code, so it shouldn't display as a link in any version of any browser.
    You may want to run an anti-virus/malware program and see if it picks anything up.
    Are you sure you still want to support IE7?
    According to everything I've seen, somewhere between .5% and 1% of all users still have IE7 installed.
    Now with Windows XP's "Death Date" set at April 8 next year, IE8 should start falling off dramatically (currently at about 6%) as current XP users are forced to upgrade or be subject to unpatched problems after that date.

  • Problems with flash navigation in Internet Explorer 7

    I have a frameset, the navigation frame uses flash for the
    navigation - basic getURL code with target frame "MAIN" (which is
    the name of the frame I want to target). This worked fine in IE6,
    but when I upgraded to IE7 clicking on the navigation caused it to
    fire off a new window (as if I had given it a target "_blank").
    Has anyone come across a similar problem?
    Sorry if this is a basic question, I am a novice flash user
    and any help with this would be appreciated.

    JodiBurgess wrote:
    > I have a frameset, the navigation frame uses flash for
    the navigation - basic
    > getURL code with target frame "MAIN" (which is the name
    of the frame I want to
    > target). This worked fine in IE6, but when I upgraded to
    IE7 clicking on the
    > navigation caused it to fire off a new window (as if I
    had given it a target
    > "_blank").
    Try another name, words like Main or mainFrame are reserved
    and always caused
    problems. Give the frame some unique name Jodi_frame etc...
    Also, don't forget to test it on server, not locally.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Problem with Tomcat 404 Redirects & Internet Explorer

    Hello All --
    I am running Tomcat 5.5.9 stand alone on a linux server. My default application is loading when you visit http://*IPAddress*/
    I have set up the standard <error-page> tags in my context web.xml, located in: TOMCAT-INSTALL/webapps/contextname/WEB-INF.
    Browsing to an invalid link through FireFox correctly displays my error page. However, browsing to the same invalid link through IE 6 displays the standard IE 404 Not Found Error message.
    The strange thing is, if I visit a correct page through IE, then go back and change it so it is incorrect, THEN IE sees my custom error page.
    For example, if I visit
    http://siteaddress.com/products.jsp?product_id=12345, the page loads correctly. If I change the address to
    http://siteaddress.com/products.js?product_id=12345, IE then sees my custom error.
    But if I enter the incorrect address right away in a new IE window, I receive the standard IE 404 error messaging.
    Could someone please explain why this is happening and what I can do to resolve the problem?
    Thank you in advance for your help!
    -- Chris

    Hi,
    I got this to work finally and documented it here:
    http://markashworth.objectis.net/Tutorial/tomcat404IE
    Hope this helps.
    Mark Ashworth

  • Recently, when opening some websites, I can't view the page and now must open them with google chrome or internet explorer in order to view them

    Recently, when opening some websites, I can't view the page and now must open them with google chrome or internet explorer in order to view them

    Hi headshot, <br /> Sorry you are having problems.
    Are you seeing any error message or notification ? <br />If so what ?
    If the page fails to load try clearing Reloading with the Ctrl F5 shortcut to force loading without the old new cached files. If that does not help try cache and clearing cookies for that site.
    * Also see [[Websites don't load - troubleshoot and fix error messages]]
    * [[Delete cookies to remove the information websites have stored on your computer#w_delete-cookies-for-a-single-site]]_delete-cookies-for-a-single-site
    Reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with a left click.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    Let us know if this solves the issues you are having.
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.

  • Problem with contextual menus after 10.9.3 update

    Hello, since the update to 10.9.3 i am experiencing problems with contextual menus. The problem is more frequent when I use an external screen.
    First problem: I am losing the icons in the top bar of the finder. This happens mostly on external screens.
    Second problem: The arrows indicating submenus upon a right click are lost. This problem is also present when I use the internal screen of my Macbook.
    Sometimes, the icons in the left menu bar of the finder are also lost (mostly Dropbox):
    Is there anything I can do? Is this a known problem?
    My current system:
    Macbook Pro Retina 13" (late 2013)
    2.8 GHz Intel Core i7
    8 Gb Ram
    Intel Iris
    Thanks!

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

Maybe you are looking for

  • Seeburger AS2 Adapter - Cookie Control

    Hello together, on my current project I am facing this kind of problem during AS2 communication: Our partner provides us a cookie containing a session ID. Using this cookie we are able to send messages to our partner. This cookie has no expiration da

  • Can't refer to it

    Good day all, In Jdev 11.1.1.5, after I've added this to the Page Def of the jsf <parameters> <parameter id="par_user" value=""> </parameter> </parameters> why do I encounter this javax.el.ELException: java.lang.NullPointerException when I try to ref

  • How to Implement Dimension Operator in OWB

    Hi, Actually I am new to OWB and I am confused about the use of dimension operator and cube operator I want to know how data is mapped with dimension operator as source and target(in different cases) and also how the cube operator is attached to the

  • Date reset on macbook pro, 5 pop up windows asking for permission, worried.

    I restarted by macbook pro this morning and was informed that the date had been reset to a date before Jan 1st 2008 (Sunday December 31, 2000) and I had five pop up windows appear asking for me to grant permission connections to these applications: n

  • DVCPROHDAudio.plugin error / system log

    I discovered this repeating error in the system log. I did see an archived post that said this was issue with an old Final Cut Studio plug-in that it would not load on Intel mac. I don't have Final Cut Studio. I do have final cut express hd installed