• The field is no longer visible, but the div remains visible. This creates a space the size of the field. Could you tell me how to make the whole area disappear?


    Underthe title Our delicious ingredients there s a big space related to the empty field.

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

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

    (@rubiwane)

    can someone help please?

    I had the same problem with wear-together.at/bestellen, its solvable with javascript afair, but i also lost the script so id appreciate an answer

    Thread Starter rubiwane

    (@rubiwane)

    Where did you get the script ?

    Plugin Author crazypsycho

    (@crazypsycho)

    You have a container with hidden widgets in it.
    You want to hide this container if all widgets are hidden.
    So you need to hide it with javascript.
    Something like this:

    let $container = jQuery('.elementor-element-5180d98); // the class of the container
    let $widgets = $container.find('.elementor-element');
    if (!$widgets.length) {
    $container.css({display: 'none'});
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.