All I want is to have an image with either tabs or drop downs .....

Ok so I used the following code as per the templated version of dropdown buttons on velo and eidted to be relevant to my own.
And on desk top I have huge gaps of white space.
The boxes don’t line up on either desktop or mobile and my text on mobile is all shoved up and looks unsightly.

All I want is an imagine followed by specification that drops down. I was happy to have read more … but that tutorial did not work … so iv got to the templated versions and nearly a week or moving things round my pages it still looks no better and I cannot work out what to do.
The multistate boxes dont work, the drop down boxes do work with my code but they look poor and have gaps … feel at a total loss here for something that looks so simple.

});

$w('#SizeCollapseButtontwe').onClick(() => { 
    toggleBox($w('#mintgasCollapsibleBox'), $w('#mintgasPlusSign'), $w('#mintgasMinusSign')); 
}); 

});

function toggleBoxtwe(boxElement, plusSign, minusSign) {
const isCollapsed = boxElement.collapsed;
if (isCollapsed) {
plusSign.hide();
minusSign.show();
boxElement.expand();
} else {
minusSign.hide();
plusSign.show();
boxElement.collapse();
}
}

Ticket sent to wix re the gaps but no reply yet
Any help greatly received