Below is the widget I want to hide (I don't want the buttons in it to be seen).
I've heard of the 'display:none; attribute' and also 'this._visible false;' but
I have no idea where to put tthem.
Could someone please indicate where in the code below should the attribute be added?
<b:widget id='HTML5' locked='false' title='' type='HTML'>
<b:includable id='main'>
<!— only display title if it's non-empty —>
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
</b:section>
</div>
</div></div> <!— end outer-wrapper —>
</body>
</html>





