Adding CAPTCHA to form the widget adds white bar at the bottom of the screen (CHROME/iOS)

I worked with support on this subject for more than a week and after trial and error (and several headaches), I was able to identify the problem.

It seems that when CAPTCHA is added to a form (form widget), the extra space is added at the bottom of the page (about 20px). This happens in CHROME and iOS... IE seems to do fine, Firefox - no problem.

When you remove the CAPTCHA, without issue. I maybe the form was overlapping and pushing the content down - but, alas, not the question. So I started with a blank page and a footer (sticky and not) - the result: something is added to the page and creates white space at the bottom.

Please notify. It is a problem persisting that ruins/design limits.

Still having this problem? Google updated reCaptcha yesterday to fix this problem.

Tags: Adobe Muse

Similar Questions

  • The add on bar is missing, while in full screen

    If NOT in full screen and then the announcement on bar is visible. Note that adding on bar is checked in both cases. I tried uncheching check again, but this does not solve the pb. Thanks for your help, it's really annoying.

    Mode full screen mode toolbar all are hidden and only the toolbar and tab bar Navigation bar will appear if you move the mouse to the top.

    You can watch the Autohide extension to choose what bars to display full-screen mode.

  • Need help with the orientation of the screen on iOS (app rejected)

    Hello

    I have a single application of landscape, which was rejected by Apple. Please read their comment of rejection below:

    ------------------------------------------------------------------------------------------ ---------------------------------------------

    10.1


    We found that your application does not meet the iOS of Apple Human Interface Guidelines, as required by the App Store Review Guidelines.


    Specifically, we noticed your app only supported the left-top variant of landscape, but not the top-right variant.


    All supporting both variants of these types, each with unique launch images, offers the best user experience and is recommended, we understand that there are some applications that must run in the direction landscape only. In this case, should support the two variants of this orientation in your application, for example, the Home left and right button.


    This issue generally requires only a change to the code simple and clear. However, if you need help, the Team of Support Apple Developer is available to provide assistance at the level of the code.

    ------------------------------------------------------------------------------------------ ------------------------------------------------

    I wondered about this myself. How can this be repaired? I know there must be a way.

    Thanks for any info you might have.

    I didn't think to disable the auto-lock on the iPad.

  • The checkmarks in the boxes that I have added a Muse form widget appear blurry.

    The checkmarks in the boxes that I have added a Muse form widget appear blurry.  Is there somewhere that I can change the resolution of these?  Why default check marks would be at the wrong resolution?  Could this something I've done when you create the form?

    Thank you!

    The checkmarls are simple images. If you to scale to the top of the box or look in a higher magnification, it seems of course fuzzy.

    You can replace the checkmarks by graphic of your choice (perhaps scalable SVG)

    Select a check box, open the States Panel and see the different States; change the graphics to the desired state by using the 'fill' command in the command band on top of the application window.

  • Adding line by submitting the manual tabular form while adding lines

    Hi all

    I'm a newbie in the Apex.

    I created a manual tabular form based on Apex_Collection. In addition, created the buttons ADD, DELETE and APPLY the CHANGES .

    The data below are the steps that I did.

    1 initialize the Collections

    Process: When loading - before header

    Enforcement process: once a Page visit

    Source:

    DECLARE
      l_collection_name APEX_COLLECTIONS.COLLECTION_NAME%TYPE;
      l_bind_names      APEX_APPLICATION_GLOBAL.VC_ARR2;
      l_bind_values     APEX_APPLICATION_GLOBAL.VC_ARR2;
      l_query           VARCHAR2(32767);
    BEGIN
      l_collection_name := 'EMAILDETAILS';
    
      IF apex_collection.collection_exists(l_collection_name)
      THEN
      apex_collection.delete_collection(p_collection_name => l_collection_name);
      END IF;
    
      l_query := '   SELECT cmp_cd, ' --c001 => f01
      || '   email, ' --c002 => f02
      || '   tab_seq_id, '  --c003 => f03
      || '   NULL, ' --c004 => f04
      || '   NULL, ' --c005 => f05
      || '   NULL, ' --c006 => f06
      || '   NULL, ' --c007 => f07
      || '   NULL, ' --c008 => f08
      || '   NULL, ' --c009 => f09
      || '   NULL, ' --c010 => f10
      || '   NULL, ' --c011 => f11
      || '   NULL, ' --c012 => f12
      || '   NULL, ' --c013 => f13
      || '   NULL, ' --c014 => f14
      || '   NULL, ' --c015 => f15
      || '   NULL, ' --c016 => f16
      || '   NULL, ' --c017 => f17
      || '   NULL, ' --c018 => f18
      || '   NULL, ' --c019 => f19
      || '   NULL, ' --c020 => f20
      || '   NULL, ' --c021 => f21
      || '   NULL, ' --c022 => f22
      || '   NULL, ' --c023 => f23
      || '   NULL, ' --c024 => f24
      || '   NULL, ' --c025 => f25
      || '   NULL, ' --c026 => f26
      || '   NULL, ' --c027 => f27
      || '   NULL, ' --c028 => f28
      || '   NULL, ' --c029 => f29
      || '   NULL, ' --c030 => f30
      || '   NULL, ' --c031 => f31
      || '   NULL, ' --c032 => f32
      || '   NULL, ' --c033 => f33
      || '   NULL, ' --c034 => f34
      || '   NULL, ' --c035 => f35
      || '   NULL, ' --c036 => f36
      || '   NULL, ' --c037 => f37
      || '   NULL, ' --c038 => f38
      || '   NULL, ' --c039 => f39
      || '   NULL, ' --c040 => f40
      || '   NULL, ' --c041 => f41
      || '   NULL, ' --c042 => f42
      || '   NULL, ' --c043 => f43
      || '   NULL, ' --c044 => f44
      || '   NULL, ' --c045 => f45
      || '   NULL, ' --c046 => f46
      || '   ''O'', ' --c047 (for record status)
      || '   wwv_flow_item.md5(cmp_cd, email, tab_seq_id) ' --c048 (for optimistic locking)
      --c049 for (not used in collection/reserevered for seq_id array)
      --c050 (not used in collection/reservered for delete checkbox array)
      || ' FROM Cmp_Email '
      || ' WHERE cmp_cd= v(''P9_CMP_CD'') ';
    
      apex_collection.create_collection_from_query_b (
      p_collection_name => l_collection_name,
      p_query           => l_query
      );
    
    
      IF :REQUEST = 'ADD'
      THEN
      APEX_COLLECTION.ADD_MEMBER(p_collection_name => l_collection_name);
      END IF;
    
    END;
    

    2. tabular Guide

    Type: SQL query

    Source:

    SELECT apex_item.hidden(4,c047,NULL,'f04_'|| '#ROWNUM#')
      || apex_item.hidden(5,c048,NULL,'f05_'|| '#ROWNUM#')
      || apex_item.hidden(6,seq_id,NULL,'f06_'|| '#ROWNUM#')
      || apex_item.hidden(3,c003,NULL,'f03_'|| '#ROWNUM#')
      || apex_item.hidden(1,c001,NULL,'f01_'|| '#ROWNUM#')
      || apex_item.checkbox(
      7, 
      seq_id,
      NULL,
      CASE 
      WHEN c047 = 'D' THEN seq_id
      END,
      ':',
      'f07_' || '#ROWNUM#'
      ) AS delete_checkbox,
      apex_item.text(
      2,
      c002,
      20,
      50,
      NULL,
      'f02_' || '#ROWNUM#'
      ) AS email_id
    FROM apex_collections
    WHERE collection_name ='EMAILDETAILS'
    ORDER BY c002
    

    The buttons used:

    1. name button: ADD

    Action: send the Page

    2 button name: DELETE

    Action: send the Page

    3 Collection page

    Point process: present now - before the calculations and Validations

    Enforcement process: once a Page visit

    Source:

    DECLARE
    
    
      l_collection_name APEX_COLLECTIONS.COLLECTION_NAME%TYPE;
      l_original_md5    VARCHAR2(32);
      l_latest_md5      VARCHAR2(32);
    
    BEGIN
    
      l_collection_name := 'EMAILDETAILS';
    
      FOR x IN 1 .. apex_application.g_f06.count 
      LOOP         
      IF apex_application.g_f01(x) IS NOT NULL --ID exists, check to see if record was updated
      THEN
      SELECT c048 INTO l_original_md5
      FROM apex_collections
      WHERE collection_name = l_collection_name
      AND seq_id = apex_application.g_f06(x);
    
      l_latest_md5 := wwv_flow_item.md5(
      apex_application.g_f01(x),
      apex_application.g_f02(x),
      apex_application.g_f03(x)
      );
    
      IF l_original_md5 != l_latest_md5 
      THEN
      apex_collection.update_member(
      p_collection_name => l_collection_name,
      p_seq             => apex_application.g_f06(x),
      p_c001            => apex_application.g_f01(x),
      p_c002            => apex_application.g_f02(x),
      p_c003            => apex_application.g_f03(x),
      p_c047            => 'U',
      p_c048            => apex_application.g_f05(x)
      );
      END IF;
      ELSE --ID does not exist, must be new record
      apex_collection.update_member(
      p_collection_name => l_collection_name,
      p_seq             => apex_application.g_f06(x),
      p_c001            => apex_application.g_f01(x),
      p_c002            => apex_application.g_f02(x),
      p_c003            => apex_application.g_f03(x),
      p_c047            => 'N',
      p_c048            => apex_application.g_f05(x)
      );
      END IF;
      END LOOP;
    
      IF :REQUEST = 'DELETE' 
      THEN
      FOR x IN 1 .. apex_application.g_f07.count 
      LOOP
      apex_collection.update_member_attribute(
      p_collection_name => l_collection_name, 
      p_seq             => apex_application.g_f07(x), 
      p_attr_number     => '47', 
      p_attr_value      => 'D'
      );
      END LOOP;
      END IF;
       
    END;
    

    4. table collection

    Point process: submit now - after calculations and Validations

    Enforcement process: once a Page visit

    Source:

    DECLARE
      l_table_md5       VARCHAR2(32);
      l_collection_name APEX_COLLECTIONS.COLLECTION_NAME%TYPE;
      l_del_count       PLS_INTEGER := 0;
      l_upd_count       PLS_INTEGER := 0;
      l_ins_count       PLS_INTEGER := 0;
      l_success_message VARCHAR2(32767);
       
      CURSOR op_lock_check_cur (p_id IN NUMBER)
      IS
      SELECT wwv_flow_item.md5(cmp_cd, email, tab_seq_id)
      FROM Cmp_Email
      WHERE tab_seq_id = op_lock_check_cur.p_id
      FOR UPDATE;
    BEGIN
      l_collection_name := 'EMAILDETAILS';
    
    
      FOR x IN (
      SELECT *
      FROM apex_collections
      WHERE collection_name = l_collection_name
      AND c047 IN ('N','U','D')) 
      LOOP
      IF x.c047 = 'N'
      THEN
      INSERT INTO Cmp_Email(tab_seq_id,cmp_cd,email) 
      VALUES (cmp_email_seq.nextval,
      :P5_CMP_CD_HIDN, 
      x.c002
      );
    
      l_ins_count := l_ins_count + 1;
      ELSIF x.c047 = 'U'
      THEN
      OPEN op_lock_check_cur(x.c003);
      FETCH op_lock_check_cur INTO l_table_md5;
    
    
      IF l_table_md5 != x.c048 
      THEN
      raise_application_error(-20001,'Current version of data in database has changed since user initiated update process.');
      END IF;
    
      UPDATE Cmp_Email
      SET cmp_cd=:P5_CMP_CD_HIDN
      ,email = x.c002
      WHERE CURRENT OF op_lock_check_cur;
    
      CLOSE op_lock_check_cur;
    
      l_upd_count := l_upd_count + 1;
      ELSIF x.c047 = 'D'
      THEN
      DELETE FROM Cmp_Email
      WHERE tab_seq_id = x.c003;
    
      l_del_count := l_del_count + 1;
      END IF;
      END LOOP;
       
      apex_collection.delete_collection(p_collection_name => l_collection_name);
       
      l_success_message :=  
      l_ins_count || ' rows inserted, ' ||
      l_upd_count || ' rows updated, ' ||
      l_del_count || ' rows deleted';
    
      :P5_SUCCESS_MESSAGE:= l_success_message;
       
    END;
    

    When I press the ADD button, a new line must be added to the shape of the table and the data should be saved to the collection. , But currently, the page is being submitted to the database table when adding new lines in the form of tables. The data should only be saved in the database when the user clicks on the APPLY CHANGES button

    I searched the Forum about this issue and have found many discussions which suggested to use JavaScript to add new lines. As I have no knowledge of JavaScript, these solutions have been strange for me.

    Please help me solve this problem.

    Thanks in advance.

    Kind regards

    Aravind

    Hi Christophe,

    Follow the changes mentioned below

    1. remove this your Collections initialize

    IF :REQUEST = 'ADD'
    THEN
      APEX_COLLECTION.ADD_MEMBER(p_collection_name => l_collection_name);
    END IF;  
    

    2 condition your collection process initialize

    Modify your process-> conditions-> PLSQL Expressions->: REQUEST IS NULL

    3. create a process more onload I say Add new line to the collection

    DECLARE
        l_collection_name APEX_COLLECTIONS.COLLECTION_NAME%TYPE;
       BEGIN
          l_collection_name := 'EMAILDETAILS';
         IF apex_collection.collection_exists(l_collection_name)
          THEN
              APEX_COLLECTION.ADD_MEMBER(p_collection_name => l_collection_name);
              END IF;
       END;
    

    4 condition your Add new line to the collection

    Modify your process-> conditions-> request = Expression1-> ADD (this should be request ADD button)

    5. change your button-> Action addition-> redirect to this application page :-> page no (same page)->-> ADD APPLICATION

    6. check your through the process conditional Page collection

    Modify your process-> conditions-> PLSQL Expressions->: ASK IN ('ADD', 'APPLY_CHANGES', 'DELETE')

    7. check your subject to the process of Collection to Table under condition

    Modify your process-> conditions-> PLSQL Expressions->: ASK IN ('APPLY_CHANGES')

    8. for the whole process to remove the conditions when the button is pressed.

    If the problems persists, create a sample on apex.oracle.com and share the connection information with the name of workspace.

    Hope this helps you,

    Kind regards

    Jitendra

  • Added new line at the top of tabular form in APEX 5.0 and universal theme (topic 42)

    Hello Apex Experts,

    When the user clicks on the button 'Add Row' a tabular presentation, I would like the new line to be at the top of the report rather than the bottom.


    I followed the instructions from Added new line at the top of table in APEX 4.0 form and Denes Kubicek demo application. But it does nothing, always create new bottom line.


    Anyone have an idea or an idea?


    Your help would be appreciated.


    Kind regards

    Blabla

    Hi all

    This problem is now solved by following the new blogpost of Dene:

    http://www.deneskubicek.blogspot.de/2015/05/tabular-form-add-rows-top-universal.html

    Kind regards

    Blabla

  • How to add white Gaussian noise to the picture of her and her negative?

    How to add white Gaussian noise to the picture of her and her negative?

    Is that what you're trying to accomplish:

    TO:

    Here's the code to do.

    Michel

  • When I add a bookmark, I get hundreds of multiple entries for the same bookmark in the recently added bookmarks folder and the bookmark tab. Difficulty?

    Adding a results of bookmark in 100's of entries for this bookmark on the Bookmarks tab and in the recently added bookmarks folder. The only way to remove them is to click and delete each separate entry? Any idea what is happening or how to fix it? Thank you.

    Start Firefox in Safe Mode {web link}
    While you are in safe mode;

    Type of topic: preferences #advanced< enter > in the address bar.

    Under Advanced, select General.
    Find and stop using hardware acceleration.

    Search web sites secure. Are there problems?

  • The ADF tree fades after adding a button after the tag from the tree of the ADF

    I have a tree ADF that will have a few Groups (parent) and issues (child), it displays the content properly, now I have to add a button at the end of the page, so when I added a button on the page is shrunk and I see two bars vertical and horizontal scrolling for the part Questions and groups. but I want the content to be displayed correctly, and at the end the button should available.

    I tried width ADF Stretch and addition of the tree and the key to all the different types of components, but they did not work.

    Can you please suggest me a way to do this?

    The jsp page looks like this:

    < af:form >
    < af:tree - >
    < f: facet name = "nodeStamp" >

    < af:outputText value = "#{node." GrpDesc}"id ="ot1">

    < af:outputText value = "#{node." QstnDesc}"id ="ot2">


    <!- and I have a few components of selectOneRadio here, which will be displayed for each question >

    < / af:tree >

    <! Here, I added a button and I have actions defined for it >

    < text af:commandButton = "save and continue".
    ID = "cb2" / >

    < / af:form >






    Thank you
    Jean Lou

    Published by: user12217808 on April 27, 2012 04:55

    Before adding a status bar button, you will need to place a toolbar item.

    PanelCollection is a naming container. If you try to access your tree by ID, you need to add ID of panelCollection and: entry. As "tree1"-> "pc1:tree1".
    I think that panelCollection itself cant' break the queried data.

  • How can I remove the 'Edit' button after deletion of the widgets screen in iOS 10?

    I downgraded just installed iOS 10.0.2. A terrible free - almost as bad as i_Tunes 12 - perhaps worse. I would like to know if someone has found a way to get rid of the icon of the button change which is now like a zit in the middle of what was a screen fully functional widgets before it got crowded with icons of Fisher-Price my little pony (which I deleted it). Thank you.

    I'm guessing that Edit button immediately beneath the last widget. So if you have no active widgets it's going to be in the middle of the screen ready for the user to add widgets.  If you have disabled all the widgets I don't know why you would go there anyway.

  • How to move icons of the add-on at the helm the additional module at the bottom of the screen

    I have a number of modules, and the icons on some of them take a lot of space. So the navigation bar is stuffed full. I added the bar add-on that appears at the bottom of the screen. However, I did not understand how to get the icons module moved to the bar downstairs. I'm sure it's something very simple, but I did find the magic combination to do it again.

    I would appreciate any help/suggestions you can give me. Thanks for your help.

    I don't know if it's relevant, but I use two laptops computers Toshiba running Windows 7 and the other is Windows 10. Both are 64-bit. And it is Firefox 42.0.

    Type of topic: customization< enter > in the address bar.
    In the new window, look for the icon. When you find it, press and hold
    the left button on it and move it to where you want it to be.
    You can move the icons you want here, but
    some icons are locked in place.

    Also, there is a default button in the Middle at the bottom.

  • reset the settings to the printer... still no print... more haven't added any items to the menu bar... they went

    reset the settings to the printer... still no print... more haven't added any items to the menu bar... they went bar & customize window title bar changed...

    By default Firefox will be "reduced to adjust." You who can disable in layout in a regular window or in print preview, but it's hard to call Preview in the window pop up in print, because the menu bar and the toolbar are removed. If it is a common problem, you can use a different add-on (!) which puts the print preview before printing and Page Setup on the shortcut menu.

    I have not used for some time, but I hope that it always works in Firefox 29: https://addons.mozilla.org/firefox/addon/printprint-preview/

  • White band from top to bottom right of the screen (m1)

    As the subject says, I have white approximately 12 to 20 pixels wide on the right side of the screen up and down the Strip.

    I have a Tecra M1. I have a feeling that maybe some connections can loosen, but not knowing what I would find, I can't open it. It's a former demonstration model of the company my mom works, so I'm not sure of the status of the guarantee. I would have preferred, I checked if I can sort myself before spending huge amounts of money for someone else to do it for me.

    See you soon

    Hello

    You must do the following steps.
    1, try to de - and reinstall the graphics driver. If possible, you can download a new version of https://eu.computers.toshiba-europe.com.

    2, try doing a BIOS update which can be found at this url.

    3, to make it safe to recover the entire system with the Toshiba Recovery CD. If a place of failure after that, you have a hardware failure. You should contact a Toshiba Service partner and make a short health check on the laptop!

    Rudi Bye

  • I just sign up but after adding 6 contacts I can't add other contacts. What should I do?

    I just sign up but after adding 6 contacts I can't add other contacts. What should I do?

    original title: adding contacts

    Hi Mariz,

    What mail client do you use?

    If you use Windows Live/Hotmail as your e-mail service provider, then you can publish your application in the Windows Live Forum for assistance or you can get in touch with the e-mail provider for the same thing.

    Windows Live Support

  • How to add the background image to the screen

    Hi all

    I want to add the background image to the main screen how can I do it.

    On the main screen, I used

    -a manager of HorizontalFieldManagerField to view the bitmapField (horizontally).

    -a manager of VerticalFieldManagerField to view the bitmapField (vertically).

    already images of display screen (bitmap field) with Horizontal and Vertical Manager, but I also want to display the background image for the screen, how can I reach this help me please.

    Concerning

    Adkins

    Thanks for all the response, I tried and sloved logic here how I did

     VerticalFieldManager mainVerticalManager = new VerticalFieldManager(Manager.NON_FOCUSABLE|Manager.NO_HORIZONTAL_SCROLL|Manager.NO_VERTICAL_SCROLL){
                protected void paintBackground(Graphics graphics)
             {  
    
             }
             protected void sublayout( int maxWidth, int maxHeight )
             {
    
             }
            };
    
    then i added other to manager on to this
    

    My problem is sloved thank you for the reply

Maybe you are looking for