Why is IE 10 adding a white row under my Edge Animation?

Can anyone help me solve my coding issue with IE 10 on my client's website below:
http://www.procoresolutions.com/
IE is adding a white row under my Edge Animation on the home page that is protruding out on the right side as well.  I also built another site for the same client which this is not an issue at http://www.donnellycommunications.com
Sites are similar, so I'm not sure why it's happening on one site and not the other.
If anyone can help, I'd sure appreciate it.

Link #1 code errors
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.procoresolutions.com%2F
Lin#2 code errors
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.donnellycommunications.com%2F
IE10 is much less forgiving of code errors than older ver of IE.
Nancy O.

Similar Messages

  • Adding Just One Row at a Time

    Multiple users can add Comments to a table, once added, the comments should be read only. How would I go about creating a region that will add just one row at a time, clear the region and then allow the adding of another row and not allow access to existing data rows?
    Jeff

    This example is doing exactly that:
    http://apex.oracle.com/pls/otn/f?p=31517:170
    Once added, the row can not be changed any more.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Problem in adding a new row in a table.. plsss hlppp

    Hi Friends,
    I have a table defaulted to 4 rows. I have a add button to add a new row in the table.
    When i have already 4 rows in table, and when i click add its adding that 5th row correctly( and i used set_lead_selection for this new row ).
    But i want to automatically make a next page once i hit the ADD button here. Each time now i m hitting next page then only  able to see hte 5th row. I need once ADD is clicked, i want to see the 5th row visible..
    Can someone tell me how to code or do this
    thanks friends,,,
    Niraja

    hi niraja,
    Plz refer to the following code:
    method onactiononadd .
    node_material type ref to if_wd_context_node.
    elem_material type ref to if_wd_context_element.
    stru_material type sflight.
    node_material =  wd_context->get_child_node( name = 'ANNA' ).
    elem_material = node_material->get_element(  ).
    if ( elem_material is initial ).
    call method node_material->create_element
    receiving
    element = elem_material.
    endif.
    call method elem_material->get_static_attributes
    importing
    static_attributes = stru_material .
    call method node_material->bind_structure
    exporting
    new_item = stru_material
    set_initial_elements = abap_false.
    endmethod.
    i hope it helps
    regards
    arjun

  • How do you set the number of rows in a spreadsheet, so that even when you drag data in, in writes over those rows instead of adding a new row?

    How do you set the number of rows you want in a spreadsheet, so that even when you drag data in, in writes over those rows instead of adding a new row?

    After the discovery reported above, I filed this report :
    Bug ID# 10073038
    Summary:
    When Numbers is used on a system with decimal comma a csv file may be good AND wrong
    Steps to Reproduce:
    With Numbers v2, you introduced an interesting enhancement.
    In system using the comma as decimal separator, Numbers requires csv files using the semi-colon as values delimiter.
    In fact it’s true if we OPEN the document dragging its icon on Numbers one or thru the open dialog.
    This said.
    (1) Drag and drop a csv built with the 'semi-colon' standard on a table or on a sheet
    (2) Drag and drop a csv built with the 'comma' standard on a table or on a sheet
    Expected Results:
    Every normally constituted user assume that in
    case (1) he will get a perfectly built table
    case (2) he will get every cells of a row in a single cell
    Actual Results:
    In fact you forgot the drag and drop way of use and in
    case (1) every values separated by semi-colon are inserted in a single cell
    case (2) values separated by comma are correctly spread in a table
    isn’t it ridiculous ?
    Regression:
    Except looking in  QuickView to see which is exactly the structure of the file to decide the way we will insert it in a Numbers document, we may use an applescript fair enough to replace the semi-colons by TAB characters
    or
    to replace the commas by TABs and the decimal periods by commas
    Notes:
    While I am on this subject, I wish to make two proposals:
    (1)  It would be fine to format the date according to the ISO format year-mm-dd when you export a Numbers doc to csv.
    Doing that, dates would be imported correctly in every countries.
    At this time, on an English system, you export as mm/dd/year.
    If the doc is open on a system using the format dd/mm/year, the results will be odd.
    On a system using the format dd/mm/year, you export this way and so, if the doc is open on a system using the format mm/dd/year the results are odd too.
    As every localized versions accept the ISO format (at least on entry), using it in the export scheme would give a correct behavior everywhere.
    (2) It would be fine to add the format Tab Separated Values in the Export pane.
    TSV + ISO date format would give documents opening flawlessly everywhere.
    Yvan KOENIG (VALLAURIS, France) dimanche 4 septembre 2011 21:27:41
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Adding an editable row in an non editable table.

    Hi,
    My requirement is to add an Editable row in a table which is in display mode only, i mean i cannot edit the data that is present in the table.
    But if the user presses the Add Row button on the Table Toolbar, a new editable row should be added in the end, so that he can save the new data entered.
    methods tried:
    1: I have used Inputfield as Cell Editors, with their Read only Property check marked, thougt that with the new element created, it would not be Read Only.
    2: Binded the read only property with a context attribute, but still was not able to achieve this functionality.
    3: Tried the above two steps with the "Enabled" property of the Table Coloumn Cell Editors as well, but no result.
    Please give me some pointers on this.
    Regards,
    Ashish

    Hi Ashish,
    The approach you were following was correct, but I am not sure where you have placed the Enabled property attribute in the context.
    Please follow these steps:
    1. The table you are creating should have the enabled property set.
    2. The context with you are binding the table should have an additional attribute say ISENABLED of type boolean.
    3. Bind this attribute with the ENABLED property of all the input enabled fields in your table.
    4. When binding the non-editable data into the table, set this property to ABAP_FALSE for each record. This will make the existing data non editable.
    5. Use the below code for adding a new row and set the ISENABLE property of the added row to ABAP_TRUE.
        elem_table = node_table->create_element( ).
        node_table->bind_element( new_item =  elem_table set_initial_elements = abap_false ).
        stru_table-isenable = abap_true .
        elem_new_row->set_static_attributes( static_attributes = stru_table ).
    Let me know how you go about it.
    Cheers,
    Pratibha

  • Why apple is not adding tweaks like activator,volume slider in multitasking bar and a blacklist app

    Why apple is not adding tweaks like activator,volume slider in multitasking bar and a blacklist app?

    But quantity is not everything.
    Funny, because Windows proponents and users touted the quantity of apps available with that swiss cheese for security OS being "everything" or a big plus, but now say it isn't everything with iOS. Can't have it both ways.
    At present there are about SIX blacklist apps in the OFFICIAL Apple Store which I can buy for MONEY but have NO USE AT ALL because of the APIs restrictions.
    3rd party apps don't have access to private iPhone APIs for security reasons. Andrioid is following the same path as Windows. Their so called "open" OS is a swiss cheese for security mobile OS.
    If this isn't acceptable to you or having an option to block unwanted calls provided by the iPhone's OS is a very important want or need, stick with an Android or Symbian device that includes the option. 

  • Why isn't Apple adding new episodes?

    There was a new episode of Disorderly Conduct - Video On Patrol, that aired several days ago (on February 20th). Apple still doesn't have it on the store yet. Why would this happen? The episode before that, the one from 2/13, Apple added right away. Have they lost the rights to this show or something? If so, then why do they have the already-aired episodes? If not, why aren't they adding the new one? I am beginning to feel ripped off, paying good money for that Season Pass and then Apple doesn't have the episodes? :confused:

    Episodes are provided by the show's owners. If they don't provide an episode, or deliver a bad copy that needs to be replaced, all the iTunes Store can do is wait, which is all we can do as well. Amazon doesn't have it yet either, so I'm guessing that Viacom is behind in providing the episode.
    Message was edited by: Dave Sawyer

  • Why does my ipod sometimes flashes white then shuts down and then the only way to restart is to restore?

    why does my ipod sometimes flashes white then shuts down and then the only way to restart is to restore?

    If you restored to factory settings/new iPod and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
    Apple Retail Store - Genius Bar

  • Adding one additional row to table control of VA01

    HI all,
    I am working on free goods N:N senario which is not supported by sap standard.
    so we have decided to club all the material on the basis of material group and PSTYV = 'tann' in the table control of va01 and at the end of tann we have to display the free goods .The user exit is USEREXIT_MOVE_FIELD_TO_KOMP.
    Please help in in adding the additional row in table control of va01 (TCTRL_U_ERF_AUFTRAG).
    Even i have gone through all the thread in sdn and tried all the solution but none of the solution is working .
    plz quote solutions....
    thanks..
    Kundal.

    The user exit is USEREXIT_MOVE_FIELD_TO_KOMP
    Are you adding condition records, or adding free materials to VBAP?  If free materials to VBAP, you're in the wrong exit, I think....look for routines that allow you to add to internal table XVBAP in includes named like MV45AFZ*, and remember to set you UPDKZ to 'I'-insert if you're adding new rows.
    Not sure what you mean by not supported by SAP standard;  SAP does support free goods, via config!
    Edited by: BreakPoint on Mar 14, 2011 4:11 PM

  • Why is the battery charger indicator white

    why is the battery charger indicator white
    I am unable to send text messages

    You're welcome.
    You're not an idiot, as the only dumb questions are those not asked .

  • Why am I seeing a thin white horizontal line on my 27" iMac?

    Why am I seeing a thin white horizontal line across the center of my monito?

    Obvious suspects are the monitor itself or the video card.
    Boot in safe mode and see if the line is still there (just to see what happens when quarts extreme isn't running).

  • Why do my Jquery functions stop working when adding an Edge animation to my page?

    I've used Edge now for a few months on several projects and it's very useful for a designer like myself to create html5 animations as quick as Flash, but I'm noticing that everytime you add edge to a page, the jqeury it uses overwrites any others on the page and breaks other jquery based widgets. Why is this?
    I've had a coder friend I work with have a look at the problem and his only solution was to put the edge animation inside an iframe, which is far from ideal.
    Is there a way to use Edge and still use other jquery widgets on the page? (Basically I'm using a Nivo Slider jquery fading image box further down the page, which is breaking).
    Thanks

    martcol wrote:
    > I really do not thing that I have done anything at all
    to the
    > page and can garantee no changes to the PHP script.
    >
    > It's hosted on some free space so there's no support
    there. What might be the
    > problem?
    With free hosting, you get what you pay for - nothing. It's
    possible
    that the hosting company has changed the PHP configuration
    and turned
    off the display of errors. Most companies do so nowadays,
    because the
    display of errors is considered a security risk.
    You can try adding this to the top of the PHP script:
    <?php ini_set('display_errors', '1'); ?>
    If that displays any error messages, post the details of the
    error
    message here, and someone should be able to help you.
    However, without giving more details of the script and setup,
    your
    question is rather like saying "My car won't start. What's
    wrong?" It
    could be anything. To get decent help online, you need to
    describe the
    problem in more detail.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS4",
    "PHP Solutions" & "PHP Object-Oriented Solutions"
    http://foundationphp.com/

  • Why was my screen fading to white?

    So I got my MacBook two years ago. After about a year, my screen started slowly fading to white and acted slow out of nowhere. The recent times I used it, my screen no longer turned white but it was still so slow. I went ot the Genius Bar recently (which is absolutely great!) and the one who helped me said that I had an anti-virus program, Symnatec that slowed down my programs because it checked if there was a virus in everything I did. He deleted the app for me and he suggested I upgraded to Mac OS X Mountain Lion but my RAM was at the bare minimum of 2GB. So I went to a computer place in the city where they could add more. I upgraded to a 3GB RAM and upgraded to Mac OS X Mountain Lion. My quesstion is, why did my screen fade to white but then stop out of nowhere? Will it happen again? Please let me know ASAP! Thank you!

    PRAM
    A small amount of your computer’s memory, called “parameter random-access memory” or PRAM, stores certain settings in a location that Mac OS X can access quickly. The particular settings that are stored depend on your type of Mac and the types of devices connected to it. The settings include your designated startup disk, display resolution, speaker volume, and other information.
    SMC
    Fans
    The computer's fans run at high speed although the computer is not experiencing heavy usage and is properly ventilated.
    Lights
    The keyboard backlight appears to behave incorrectly (on Mac computers that have this feature).
    The Status Indicator Light (SIL) appears to behave incorrectly (on Mac computers that have an SIL).
    Battery indicator lights, if present, appear to behave incorrectly (on portables that use non-removable batteries).
    The display backlight doesn't respond correctly to ambient light changes on Mac computers that have this feature.
    Power
    The computer doesn't respond to the power button when pressed.
    A portable Mac doesn't appear to respond properly when you close or open the lid.
    The computer sleeps or shuts down unexpectedly.
    The battery does not appear to be charging properly.
    The MagSafe power adaptor LED doesn't appear to indicate the correct activity.
    System Performance
    The computer is running unusually slowly although it is not experiencing abnormally high CPU utilization.
    Application icons may "bounce" in the Dock for an extended amount of time when launched.
    Applications may not function correctly or may stop responding after being opened.

  • Adding 2 more rows to a select without inserting rows to base table

    hello all,
    i have a below simple select statement which is querying a table.
    select * from STUDY_SCHED_INTERVAL_TEMP
    where STUDY_KEY = 1063;
    but here is the situations. As you can see its returning 7 rows. But i need to add
    2 more rows..with everything else default value or what exist... except adding 2 more rows.
    i cannot insert into base table. I want my end results to increment by 2 days in
    measurement_date_Taken to 01-apr-09....so basically measurement_date_taken should
    end at study_end_Date...
    IS THAT EVEN POSSIBLE WITHOUT INSERTING ROWS INTO THE TABLE AND JUST PLAYIHY AROUND WITH
    THE SELECT STATEMENT??
    sorry if this is confusing...i am on 10.2.0.3
    Edited by: S2K on Aug 13, 2009 2:19 PM

    Well, I'm not sure if this query looks as good as my lawn, but seems to work anyway ;)
    I've used the 'simplified version', but the principle should work for your table to, S2K.
    As Frank already pointed out (and I stumbled upon it while clunging): you just select your already existing rows and union them with the 'missing records', you calculate the number of days you're 'missing' based on the study_end_date:
    MHO%xe> alter session set nls_date_language='AMERICAN';
    Sessie is gewijzigd.
    Verstreken: 00:00:00.01
    MHO%xe> with t as ( -- generating your data here, simplified by me due to cat and lawn
      2  select 1063 study_key
      3  ,      to_date('01-MAR-09', 'dd-mon-rr') phase_start_date
      4  ,      to_date('02-MAR-09', 'dd-mon-rr') measurement_date_taken
      5  ,      to_date('01-APR-09', 'dd-mon-rr') study_end_date
      6  from dual union all
      7  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('04-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
      8  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('09-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
      9  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('14-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
    10  select 1063, to_date('03-MAR-09', 'dd-mon-rr') , to_date('19-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
    11  select 1063, to_date('22-MAR-09', 'dd-mon-rr') , to_date('23-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual union all
    12  select 1063, to_date('22-MAR-09', 'dd-mon-rr') , to_date('30-MAR-09', 'dd-mon-rr') , to_date('01-APR-09', 'dd-mon-rr') from dual
    13  ) -- actual query:
    14  select study_key
    15  ,      phase_start_date
    16  ,      measurement_date_taken
    17  ,      study_end_date
    18  from   t
    19  union all
    20  select study_key
    21  ,      phase_start_date
    22  ,      measurement_date_taken + level -- or rownum
    23  ,      study_end_date
    24  from ( select study_key
    25         ,      phase_start_date
    26         ,      measurement_date_taken
    27         ,      study_end_date
    28         ,      add_up
    29         from (
    30                select study_key
    31                ,      phase_start_date
    32                ,      measurement_date_taken
    33                ,      study_end_date
    34                ,      study_end_date - max(measurement_date_taken) over (partition by study_key
    35                                                                          order by measurement_date_taken ) add_up
    36                ,      lead(measurement_date_taken) over (partition by study_key
    37                                                          order by measurement_date_taken ) last_rec
    38                from   t
    39              )
    40         where last_rec is null
    41       )
    42  where rownum <= add_up
    43  connect by level <= add_up;
    STUDY_KEY PHASE_START_DATE    MEASUREMENT_DATE_TA STUDY_END_DATE
          1063 01-03-2009 00:00:00 02-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 04-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 09-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 14-03-2009 00:00:00 01-04-2009 00:00:00
          1063 03-03-2009 00:00:00 19-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 23-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 30-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 31-03-2009 00:00:00 01-04-2009 00:00:00
          1063 22-03-2009 00:00:00 01-04-2009 00:00:00 01-04-2009 00:00:00
    9 rijen zijn geselecteerd.If there's a simpler way (in SQL), I hope others will join and share their example/ideas/thoughts.
    I have a feeling that this is using more resources than needed.
    But I've got to cut the daisies first now, they interfere my 'lawn-green-ess' ;)

  • Why don't contacts added to Mac contacts synch to Exchange?

    Why don't contacts added to Mac contacts synch to Exchange?

    You are welcome. I hope everything continues to work.

Maybe you are looking for

  • Help needed in Extending HeaderVO -VERY URGENT!!

    Hello, I need a urgent help. Actually I am trying to modify the exisiting Print Quote Document which is actually getting called from a template cald ASOPRINTQUOTE.xsl This particular xsl uses HeaderVO, LinesVO and PromptVO and hence I had to modify t

  • Accrual Rebuild Reconciliation Report

    Accrual Rebuild Reconciliation Report works fine for the transaction dates between 2003 and 2005.But When the report runs for transaction dates from 2006 to till date there were some new transactions(from the transaction dates between 2003 and 2005)

  • Customer interface - sales channel, price list and tax calculation

    We need to let third party system to upload new customer information into OFS, but I can't see the above 3 fields: 1 sales channel, 2 price list 3 tax calculation in the interface tables. The interface tables that I am working on are: ra_customers_in

  • Displaying Word document in JEditorPane

    Hi, I (urgently) need to display a .doc file in a JEditorPane component.. Can anyone sent here some simply piece of code?? Thanx in advance!! Dewsqa

  • More than 1 million files on multi-terabyte UFS file systems

    How do you configure a UFS file system for more than 1 million files when it exceeds 1 terabyte? I've got several Sun RAID subsystems where this is necessary.