Problem with my rollovers working in Safari

Hello
if you go to
http://www.enhancedwireless.net/Company/TEST.shtml
and rollover "(ODMA)" you should get a disjointed rollover of a 301 x 167 gif image. However, while this works in latest mac FF and Netscape, it doesn't work at all in Safari 1.3.2 or later. Only the section of the image that is outside the main body, ie that which appears over the grey, right margin, pops up and is visible.
So what is the problem? One thing, Been told I'm not supposed to be able to give the "left" attribute (in my css) anything other than "0", but I gave it what I wanted (-143px) and it seems to line up correctly, except doesn't show at all in Safari...is one problem my z-indexes? Not too familiar with what they should be. On my css I'm using the screen2 code.
Would love a solution, especially since I got this to work with a swf file on ALL the above browsers.
http://www.enhancedwireless.net/Technology/patentPortfolio.shtml
Rollover "71 countries."
Thanks
KB

Hi seventy one,
many thanks for your efforts to help me!!
but I just solved my problem doing the exact same as someone else did:
I cite him here:
BidgeMar 10, 2015 7:05 PM Re: Magic Mouse Scrolling Issue
Re: Magic Mouse Scrolling Issuein response to Linc Davis
Hi Linc
Thank you for the extremely detailed response.
I think I have the issue solved for the minute at least.
I not only disconnected every cable from the Mac, as I had previously done, I also disconnected every cable from my peripherals and powered down every peripheral as well, then re-wired my set-up. This seems to have solved the issue. Not sure of the technical reason that this would have fixed my problem, but it seems to have fixed the issue for the moment anyway.
So, my problem is solved too!!
Many thanks

Similar Messages

  • Hello ! I'm using iphone 5 running ios 7.1.1 I have problem with Appstore error and also Safari don't work too. What can I do to fix this problem ?

    Hello ! I'm using iphone 5 running ios 7.1.1 and I have problem with appstore error and also Safari doesn't work. what can do I fix this problem ? I need help now my iphone can't do nothing

    Need more details. What is your appstore error exactly? and what happens when you try to use Safari?

  • Problem with "Scroll to" SVG on Safari Yosemite

    Hello,
    I have recently released my new portfolio:
    http://www.nerisson.fr
    We have used some svgs, and "scroll to" on buttons to navigate on my website.
    When we click on a button "works" from the homepage or "read more" from the page "Who am I", the "scroll to" have some lag... And the header pop directly with no transition...
    Have you an idea to fix it?
    (You can view on Chrome or Firefox, to see the right comportment)
    PS : We haven't problem with the previous version of safari
    Best regards
    Jimmy

    Click here and run Adware Medic.
    (113799)

  • Please Help:  A Problem With Oracle-Provided 'Working' Example

    A Problem With Oracle-Provided 'Working' Example Using htp.formcheckbox
    I followed the simple steps in the Oracle-provided example:
    Doc ID: Note:116534.1
    Subject: How to use checkbox in webdb for bulk update using webdb report
    However, when I select a checkbox and click on the Update button, I get a "ORA-01036: illegal variable name/number" error. Please advise. This was a very promising feature.
    Fred
    Below are step-by-step instructions provided by Oracle to create this "working" example:
    How to use a checkbox in WEBDB 2.2 report for bulk update.
    PURPOSE
    This article shows how checkbox can used placed on WEBDB report
    and how to use it.
    SCOPE & APPLICATION
    The following example to guide through the steps to create a working
    example of this.
    In this example, the checkbox is used to select the records. On clicking
    the update button, the pl/sql procedure is called which will update col1 to
    the string 'OK'.
    After the update is done, the PL/SQL procedure calls the report again.
    Since the report only select records where col1 is null, the updated
    records will not be displayed when the report is called again.
    Step 1 - Create Table
    From Sqlplus, log in as scott/tiger and execute the following:
    drop table chkbox_example;
    create table chkbox_example
    (id varchar2(10) not null,
    comments varchar2(20),
    col1 varchar2(10));
    Step 2 - Insert Test Data
    From Sqlplus, still logged in as scott/tiger , execute the following:
    declare
    l_i number;
    begin
    for l_i in 1..50 loop
    insert into chkbox_example values (l_i, 'Comments ' || l_i , NULL);
    end loop;
    commit;
    end;
    Step 3 -Create SQL Query based WEBDB report
    Logon to a WEBDB site which has access to the database the above tables are created.
    Create a SQL based Report.
    Name the report :RPT_CHKBOX
    The select statement for the report is :
    select c.id, c.comments, c.col1,
    htf.formcheckbox('p_qty',c.id) Tick
    from SCOTT.chkbox_example c
    where c.col1 is null
    In Advanced PL/SQL, (REPORT, Before displaying the form), put the following code
    htp.formOpen('scott.chkbox_process');
    htp.formsubmit('p_request','Update');
    htp.br;
    htp.br;
    Step 4 - Create a stored procedure in the database
    Log on to the database as scott/tiger and execute the following to create the
    procedure.
    Note: Replace WEBDB to the appropriate webdb user for your installation.
    In my database, I had installed webdb using WEBDB username, hence user webdb owns
    the packages.
    create or replace procedure chkbox_process
    ( p_request in varchar2 default null,
    p_qty in wwv_utl_api_types.vc_arr ,
    p_arg_names in wwv_utl_api_types.vc_arr ,
    p_arg_values in wwv_utl_api_types.vc_arr
    is
    i number;
    begin
    for i in 1..p_qty.count loop
    if p_qty(i) is not null then
    begin
    update chkbox_example
    set col1 = 'OK'
    where chkbox_example.id = p_qty(i);
    end;
    end if;
    end loop;
    commit;
    /* To Call Report again after updating */
    SCOTT.RPT_CHKBOX.show
    (p_request=>'Run Report',
    p_arg_names=>webdb.wwv_standard_util.string_to_table2(' '),
    p_arg_values=>webdb.wwv_standard_util.string_to_table2(' '));
    end;
    Summary
    There are essentially 2 main modules, The WEBDB report and the pl/sql procedure (chkbox_process)
    A button is created via the advanced pl/sql coding which shows on top of the report. (The
    button cannot be placed at the bottom of the report due to the way WEBDB creates the procedure
    internally)
    When any button is clicked on the report, it calls the pl/sql procedure chkbox_process.
    The procedure is called , WEBDB always passes the parameters p_request,p_arg_names and o_arg_values.
    p_qty is another parameter that we are passing additionally, This comes from the checkbox created
    using the htf.formcheckbox in the report select statement.
    The pl/sql procedure calls the report again after processing. This is done to
    show how to call the report.
    Restrictions:
    -The Next and Prev buttons on the report will not work.
    So it is important that the report can fit in 1 page only.
    (This may mean that you will not select(not ticked) 'Paginate' under
    'Display Option' in the WEBDB report. If you do this,
    then in Step 4, remove p_arg_names and p_arg_values as input parameters
    to the chkbox_process)

    If your not so sure you can use the instanceof
    insurance,
    Object o = evt.getSource();
    if (o instanceof Button) {
    Button source = (Button) o;
    I haven't thoroughly read the thread, but I use something like this:if (evt.getSource() == someObjRef) {
        // do that voodoo
    ]I haven't looked into why you'd be creating a new reference...

  • I am getting problem with internal table & work area declaration.

    I am working with 'makt' table ..with the table makt i need to work with styles attributes ..so i declared like this
    TYPES : BEGIN OF ty_makt,
             matnr TYPE makt-matnr,
             spras TYPE makt-spras,
             maktx TYPE makt-maktx,
             maktg TYPE makt-maktg,
             celltab TYPE lvc_t_styl,
           END OF ty_makt.
    DATA : i_makt TYPE TABLE OF ty_makt.
    DATA : wa_makt TYPE ty_makt .
        But end of program i need to update dbtable "makt"...i am getting problem with internal table & work area declaration.
    i think makt table fields mapping and internal table/work area mapping is not correct. so please help me to get out from this.

    Hi Nagasankar,
    TYPES : BEGIN OF TY_MATNR,
                  MATNR TYPE MAKT-MATNR,
                  SPRAS TYPE MAKT-SPRAS,
                  MAKTX TYPE MAKT-MAKTX,
                  MAKTX TYPE MAKT-MAKTG,
                  CELLTAB TYPE LVC_T_STYL,  " Its Working perfectly fine..
                 END OF TY_MAKT.
    DATA: IT_MAKT TYPE STANDARD TABLE OF TY_MAKT,
              WA_MAKT TYPE TY_MAKT.
    Its working perfectly fine. if still you are facing any issue post your complete code.
    Thanks,
    Sandeep

  • Has anyone ever had a problem with your iphone working outside your home but not inside. The internet works fine in and outside of the house

    Has anyone had problems with your iphone working outside of the house, but not inside? Cannot make or receive calls, nor can I send or receive any text messages. This is something that just happened out of nowhere. Can I get some help please?

    Did you used to have service and now suddenly you don't?
    This happened to me a few years back, and several other iPhone users in my neighborhood, and after a while on the phone with AT&T they figured out that a technician had recently adjusted the receiver/sender on the tower and it was slightly off. They sent them back up and I actually had a better signal after than I did before it went out.
    I would call AT&T and explain the issue you are having and see if they can fix it.
    If you never had service there then like wjosten said it's probably just a bad zone.
    Hope you get it sussed out.
    -PM

  • I'm having constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. I can, however, work well in Explorer.

    For the last few weeks I have had constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. It does seem to be a browser issue, because I can work well in Explorer.

    Both the Yahoo! Toolbar extension and the Babylon extension have been reported to cause an issue like that. Disable or uninstall those add-ons.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Since upgrading my Macbook pro with Yosemite, I have problem with my Xerox Work Centre 3045 - the printer works normally but it does not recognise the scanner, can you help with this?

    Since upgrading my Mac book pro with Yosemite, I have problems with my Xerox Work Centre 3045 printer. The printer works normally but it does not recognise scanner, I can not scan anything. Can you help?

    Open Disk Utility and select your hard drive, then Repair Permissions, it will probably return a very large number of errors, primarily printer and library errors, so run it a second time.  Then restart the MacBook Pro.  If it still will not scan, try using Image Capture from Finder > Applications and see if that will work.  If not, contact Xerox about updated drivers.

  • I'm having problems with my touch screen in Safari

    Shortly after downloading iOS 8.0, I started having trouble with my touchscreen when in Safari. Note: I am not necessarily attributing the problem to iOS 8.0--just stating when it began to occur.
    Touch commands began to not work with certain buttons on certain websites. Often, the websites seemed to freeze up. I could sometimes get the touch commands to work again if I refreshed the page.
    My most frustrating encounter happened this evening, when I tried to make a purchase from a retail website I use frequently. I could use the touchscreen to accomplish all the steps in the shopping process but one: I could not get the "cart" button to work, so I could not get to the checkout screen. I refreshed and rebooted. I even downloaded iOS 8.1 and tried it again. Nothing worked. Finally, I used my wife's iPad Mini to place the order. My wife has not downloaded the new iOS 8 (neither 8.0 nor 8.1). Again, I am not necessarily implying it worked on her iPad Mini because she had not downloaded the new operating system--just stating that she had not done so.
    Any idea what might be causing this? It does not appear to be a hardware problem, as my touchscreen seems to work fine in other applications.

    DId you try clearing Safari, force close it and then reset the iPad?
    Go to Settings>Safari>Clear History and Website Data
    In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Problems with YouTube - iPad app and Safari on iPad

    Recently, I have started to encounter problems with YouTube on the iPad. The first is the desktop version of YouTube on safari. At first it worked fine, but a few days ago, whenever I try to watch a video, the playing area stays black and a message appears saying 'This video is currently unavailable.' One 'solution' I found online was to switch to the HTML5 video player in 'TestTube.' However, as the videos had been working before I didn't see why it was necessary, and anyway when I tried it only a few videos worked, with the rest showing the same message I described earlier. The mobile version of the YouTube site woks fine.
    The second problem lies with the subscriptions feature of the YouTube app. When I tap the subscriptions button, not all of them show up. I've tried finding a video by the user I want to subscribe to, tapping 'More From', followed by 'Subscribe,' but this brings up the error message 'YouTube not avaliable.' Subscribing to any other channel from the app works fine.
    Thanks - any help with either porblem would be greatly appreciated! I don't really want to go to the Apple store, and my free telephone support that came with the iPad finished some time ago.

    OMG Apple, I'm am fed up with this stupid YouTube problem I paid $500 for my iPad if not more, and I expect better! I cannot view official music videos, episodes and I can't even view 2 out of 10 videos I search for. stop trying to make people buy from your stupid iTunes store and let them be able to view all videos on YouTube. Anyone who asks me if I'd recommend and iPad, you know what I say? Its not worth the money because the reason I got an iPad was being able to have freedom just like a pc and clearly I don't have that. They ask me; can an iPad do everything a pc can do, and I say no it can't, all because I can't view videos properly on YouTube. I'm 15 and saved for an iPad and it took me 2 years, $500 I regret spending!
         Kind regards

  • Problem with Gmail, Adobe site, Opera, Safari...

    Hi guys,
    Hope you can help me asap.
    I have installed OSX Mountain Lion few minutes ago, but I have a lot of problems...
    1.) I cannot access Gmail in Opera (opera web browser) - I have the latest version, also trying reinstall it. It just says:
    Secure connection: fatal error (49)
    https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&cont inue=http://mail.google.com/mail/&scc=1<mpl=default<mplcache=2
    The certificate is valid, but permission denied.
    I know, Opera isn't the best web browser, but because of my work, I need to use atleast 2 web browsers together... so I use Opera and Safari.
    Never before had this problem with Opera.
    2.) I cannot acces some sites on Safari... For example adobe.com (and it works in Opera...)
    For example I cannot access adobe site:
    Safari can't connect to this server
    Safari can't open the page "http://www.adobe.com/ because Safari can't connect to the server "www.adobe.com".
    Please help me.
    Thanks,
    Filip

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the malfunctioning extension by uninstalling and reinstalling it. That will revert its settings to the defaults.

  • Incontext editing problem with firefox 3.6 and safari

    when i try to login to a page with ctrl + e the following message comes up:
    "You have Adobe Flash Player version 10,0,2 installed.
    Adobe  InContext Editing requires Adobe Flash Player version 10,0,12 or higher.
    Install Adobe Flash Player"
    but i have the latest version ...
    in safari i always had that problem, in firefox it worked, but not after i updated to 3.6
    it still works with chrome, but anyway ...
    anybody a clue?
    thanks!

    I'm finding that Muse doesn't work well in older browsers, since it uses technology they don't understand. I think if we design sites in Muse, we're assuming that viewers are using newer browsers.

  • View for active Incidents related to WI (Problem) with status (Active) works but can't be changed.

    Hi,
    I wanted to create a view of Incidents which are linked to a Problem (any problem).
    I did a quick test using the Incident (advanced) class, selected to display Incidents with status Active and [Work Item] Is Related To Work Item and status for Problem with the status Active.
    At this first test I didn't bother to select any specific columns to display but just went with the pre-selected ( Description, Display Name, Display Name) and it worked. 
    I got a list of expected Incidents in the view but having the Description column made it quite useless.
    So, when I try to select the columns I find useful it will not update and it returns a No items found message instead.
    (image removed due to limitations)
    It is of course possible to group by one of the Display Name fields and collapse to get a more workable view but it still lacks a lot of good information. One would like to include ID, title, Created date,
    date modified, Display Name for Affected User and Assigned to user, and a few others.
    I was just a bit stumped as to why this fails when changing the columns on a view that obviously is possible to create.
    Thanks in advance,
    Daniel

    Consider using the Advanced View Editor( or
    the free edition), since it has much more robust criteria and column editing capabilities. 

  • Problems with processing files uploaded from Safari browsers

    I have a jsp that allows users to upload files via a secure form and the standard html <input type=”file” … > tag.
    For complex reasons I need to get the contents of the HttpServletRequest into a character array. Basically my code looks like this:
    BufferedReader reader = request.getReader();
    char[] ba = (char[]) Array.newInstance(char.class, MAXFILESIZE);
    int total = 0;
    int charsRead =0;
    while ((charsRead = reader.read(ba, total, 1024)) > -1)
    total += charsRead;
    When the request is submitted by a Safari browser, approximately 70% of the time, the very first reader.read does not return a result. After about 2 minutes, I get a SocketTimeoutException. On the client side, Safari shows a “loading ….” Message and after 5 minutes reverts to a blank screen – unsurprisingly since the server never serves up a response.
    By way of comparison, when the transaction is successful, the process takes less than 1 second.
    java.net.SocketTimeoutException: Read timed out
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java(Compiled Code))
    at com.ibm.ws.io.Stream.read(Stream.java(Compiled Code))
    at com.ibm.ws.io.ReadStream.read(ReadStream.java(Compiled Code))
    at com.ibm.ws.http.ContentLengthInputStream.read(ContentLengthInputStream.java(Compiled Code))
    at com.ibm.ws.io.ReadStream.read(ReadStream.java(Compiled Code))
    at com.ibm.ws.webcontainer.http.HttpConnection.read(HttpConnection.java:342)
    at com.ibm.ws.webcontainer.srp.SRPConnection.read(SRPConnection.java:200)
    at com.ibm.ws.webcontainer.srt.SRTInputStream.read(SRTInputStream.java:80)
    at com.ibm.ws.webcontainer.srt.http.HttpInputStream.read(HttpInputStream.java:312)
    at java.io.InputStream.read(InputStream.java(Compiled Code))
    at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java(Compiled Code))
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java(Compiled Code))
    at java.io.InputStreamReader.read(InputStreamReader.java(Compiled Code))
    at java.io.BufferedReader.fill(BufferedReader.java(Compiled Code))
    at java.io.BufferedReader.read1(BufferedReader.java(Compiled Code))
    at java.io.BufferedReader.read(BufferedReader.java(Compiled Code))
    This problem occurs regardless of file size and even if Safari is told to report itself as firefox. This problem has not once occurred with any of IE 5,6 or 7 or Firefox 1.* and 2.*
    I have not been able to test this with Safari 3 Beta for Mac or Windows.
    Environment:
    Client is Mac OS-X 10.4.10 with Safari: 2.0.4
    Server is Websphere 5.1

    Since a few hours, I have the same problem like you. I uninstalled Firefox, because I thought it was a problem with it, but then i started Safari to redownload Firefox and guess what happened.. nothing. I can't download anything. don't know why. does anyone know whats wrong??

  • Problem with speakers/headset working together

    I'm trying to set it up so all my sound comes through the speakers except for Ventrilo, which would come through the headset. The mic on the headset is working fine, and there are no problems with the speakers at all. The only problem is getting only Ventrilo to come through on the headset.

    Hi,
    Try the following.
    Download the Conexant HD Audio installer on the link below and save it to your Downloads folder.
    http://ftp.hp.com/pub/softpaq/sp45001-45500/sp45166.exe
    When done, open windows Control Panel, open Device Manager and open up Sound, Video and Game Controllers.  Right click the Conexant device and select Uninstall - you should also get a prompt to remove the current driver, tick the box to allow this and then proceed with the uninstall.
    When complete, shut down the notebook, unplug the AC Adapter and then remove the battery.  Hold  down the Power button for 30 seconds.  Re-insert the battery and plug in the AC Adapter.
    Tap away at the esc key as you start the notebook to launch the Start-up Menu and then select f10 to enter the bios menu.  Press f5 to load the defaults ( this is sometimes f9, but the menu at the bottom will show the correct key ), use the arrow keys to select 'Yes' and hit enter.  Press f10 to save the setting and again use the arrow keys to select 'Yes' and hit enter.
    Let Windows fully load - it will automatically load an audio driver, but just let this complete.  Then open your Downloads folder, right click on the Conexant installer and select 'Run as Administrator' to start the installation.  When this has completed, right click the speaker icon in the Taskbar and select Playback Devices.  Left click 'Speakers and Headphones' once to highlight it and then click the Set Default button - check if you now have audio.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • How do i get my surround sound to work with my laptop while using a hdmi cable for the video

    I have a Sony surround sound  system hooked up that works great. My X-Box 360 works with it and I can get my HP G60 to play audio files through the surround sound system with a red and white audio jack plugged into the back of my surround sound recei

  • 1px line created on the right side of the browser

    Hi All, I want to have a banner image, which fades into blackness so i have made the image smaller to fade into a black solid background. I have simply placed this behind the background image. When adding either a rectangle with a fill image or a sol

  • URGENT How to map an aggregated result to Target flat-file?**

    All, I am trying to map the result of the following query from 'source1' to my target which is a flat file. The query result set has 'one row per account' which is unique and record looks like : 12300,9675,2008,6,11250,$-2095.48 Questions>>> 1. what

  • Speaker sound bar

    I just purchsed a LG LSB316 sound bar. It does not have an HDMI output/input yet it has an optical jack. Neither my tv nor my blu ray player have an input for an optical. What is my next step?

  • Start Yosemite in recovery mode

    In preveous versions of OS X you could access recovery mode (partition) by pressing alt-key during startup. Now in the latest os this partition is not present (at least on my mac). Why is that, and how do I go about to create it?