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!