I added Plus signs to drop down information and re hide on minus sign click. All that code works wonderfully. However, Wix adds big blocks of white space here and there in seemingly random spots.
I added the following code (even though, I don’t believe it has a lot to do with the code itself).
export function text97_onClick(event) {
let q = $w('#text97');
let a = $w('#group5');
if (a.collapsed) {
q.text = '-'.concat(q.text.substring(1));
a.expand();
}
else {
q.text = '+'.concat(q.text.substring(1));
a.collapse();
}
}
As I mentioned, the code works great and as expected but the blank spaces here and there are concerning. Please see image below. P.S. If I am not in the right place to ask this question, please either let me know where or forward my query. Thank you in advance.