Hide widget (and white space) on specific resolution [closed]

You can use CSS and pseudo classes, like :nth-of-type(n) to target that specific widget.

You could also use Javascript in a similar way, with jQuery .addClass(‘classname’), and/or “finding” the widget through .nth-child() selector, then applying .css(‘display’,’none’).