Support » Plugin: EntryWizard » Narrow Notice Box

  • We are having the issue with the narrow notice box
    (https://wordpress.org/support/topic/very-narrow-notice-box/)

    If you’d like, we can set up an account for you so that you can investigate the issue.
    We’ve set up some test data.

    Questions from a previous post:

    1. Does the same effect occur in all browsers, or just one?
    The issue occurs on Chrome, Firefox, Edge & Safari

    2. Does it occur for all error messages ( try omitting a required field ) or just this one?
    [U002] Sorry, there are some required items missing: row 1: Title
    Really delete the item? This action cannot be undone.
    If this is your first time using the interface, please read …

    3. Does it occur for all webforms, or just one?
    All.

    4. Do you see any javascript error messages? ( in Chrome, right-click in the window, select “Inspect” and go to the “Console” tab )
    No.

    Paul from the Melbourne Camera Club (Australia)

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter ppmcc

    (@ppmcc)

    Q2 addendum: The issue occurs with the three listed messages.
    The issue does not occur when leaving a page that has not been saved.

    • This reply was modified 4 years, 2 months ago by ppmcc.
    Plugin Author Josie Stauffer

    (@joanne123)

    From the responses to the previous topic, it sounds as if this is a conflict with another plugin or a theme. Are you using one of the themes or plugins mentioned there?

    The recommended way to check for such conflicts is to disable all plugins except entrywizard. If that fixes the problem, enable the plugins one-by-one until you find out which one is causing the issue. If it is not a plugin, try switching themes temporarily.

    If you can figure out which theme or plugin causes a conflict, please report here. If it is a free one, I can check its code and look for a fix to put in the next entrywizard release.

    If this is the same issue as before, and you are reasonably comfortable editing the css, you may possibly be able to resolve it immediately by doing this:

    In the entrywizard plugin folder, edit the styles/entrywizard.css file.

    Near the top, look for these lines:

    /* to fix an issue with some themes/plugins that set box-sizing: border-box */
    .ewz-dialog::before, .ewz-dialog, .ewz-dialog::after{
        box-sizing: content-box;
        -webkit-box-sizing: content-box;
    }
    

    Insert ” !important” between “content-box” and “;”, so it looks like this:

        box-sizing: content-box !important;
        -webkit-box-sizing: content-box !important;
    

    If you have to use a word processor, please make sure you save the file in plain text format with the correct .css extension. WordPad is a better editor to use.

    Plugin Author Josie Stauffer

    (@joanne123)

    One more thing: please make sure you have the latest version of wordpress and any suspect themes or plugins. I seem to remember reading that a jQuery update may have fixed one possible issue. Some plugins include their own versions of jquery.

    Thread Starter ppmcc

    (@ppmcc)

    Today we checked that WordPress on our site is the latests: 5.3.2

    We tried the code you suggest, but it did not resolve the issue.
    This is a copy of the changed code:
    /* to fix an issue with some themes/plugins that set box-sizing: border-box */
    .ewz-dialog::before, .ewz-dialog, .ewz-dialog::after{
    box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    }

    We checked that we had the latest version of our theme, Flatsome: 3.10.3

    Tomorrow we’ll start looking at our plugins.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Narrow Notice Box’ is closed to new replies.