• Resolved webworks

    (@webworks)


    None of our forms are showing up on IE 11 (?)

    They show up on other browsers.

    I sure hope there is a resolution – thank you in advance for your response.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter webworks

    (@webworks)

    Internet Explorer 11 doesn’t support display: table-column which is located in our particular theme. If you’re having a similar problem, find your theme’s stylesheet and change the following table-column to be table-cell as follows:

    /* ----->>> FORMS <<<--------------------------------------------------------------------------- */
    fieldset { display: table-column; min-width: inherit; }

    To this:

    /* ----->>> FORMS <<<--------------------------------------------------------------------------- */
    fieldset { display: table-cell; min-width: inherit; }

    Alternatively,

    Add the following CSS snippet under Customize, Additional CSS. This will change only how CF7’s fieldsets are displayed:

    .wpcf7-form fieldset {
    display: table-cell;
    }
    Thread Starter webworks

    (@webworks)

    Resolved

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Form not showing at all on IE 11’ is closed to new replies.