Hiding and showing the + sign over widgets
If you want to disable or enable the + sign forever, not just when hovering with the mouse over a widget zone read on.
Add a JavaScript web part to your page with the following settings if you want to have the + sign visible all the time:
In-line script:
jQuery('.WebPartZoneBorder').trigger('mouseover').unbind('mouseover').unbind('mouseout').removeAttr('onmouseover').removeAttr('onmouseout');
Linked file:
~/CMSScripts/jQuery/jQuery-core.js
If you want to hide it, just change the In-line script to this:
jQuery('.WebPartZoneBorder').unbind('mouseover').unbind('mouseout').removeAttr('onmouseover').removeAttr('onmouseout');
-bp-
See also: Applies to: all