Removing empty space created as a result of dropdown menus

Hi everyone!

I’m having issues regarding white space in one of my sites. I made several dropdown menus in one page and as a result there’s a big giant empty space at the bottom of my page. I presume it has something to do with code.

What’s more interesting is that I have already made that exact page in English language and it works as it should. This is the page I have problems with: https://www.geonauka.com/trening
and this is that same page, but in English which works just fine: advancedgwt.com

The code is just a bunch of if… else statements, such as:

export function button7_click(event) {
//Add your code for this event here:
if ($w(‘#box4’).collapsed) {
$w(‘#box4’).expand();
}
else
$w(‘#box4’).collapse();
}

export function button9_click(event) {
//Add your code for this event here:
if ($w(‘#text39’).collapsed) {
$w(‘#text39’).expand();
}
else
$w(‘#text39’).collapse();
}
etc.
I would appreciate any kind of help.

Thanks in advance!

I forgot to mention that I have already tried tips for removing empty space, such as pulling footer up and zooming out and than deleting empty space, but nothing worked. For creating dropdown menus I followed this tutorial: Custom FAQ on Wix by creating a double collapsing effect using Corvid - YouTube

It seems as though you’ve solved the issue? I don’t see any empty space on your site currently. What was the trick?

I am facing a similar issue. What is the resolution?