Appearance
Editing limitation
When it is required to preserve the look or styles of some ET elements, so that they always correspond the initial design, add to components or blocks specific attributes to define what their editing options will be limited in eWizard editor.
Example
html
<wiz-image sealed></wiz-image>The sealed and nested attributes without options disable the component's selection.
You can gain even more control on ET editing by passing the following options as arguments to sealed:
placement,positionto disable component movingdeleteto disable component removalduplicateto disable component duplicationpropsto disable component properties editing
The following options lock the specific styles editing:
paddingto disable padding editingbackgroundto disable background color editingborderto disable border editingsizeto disable size editing
Even more, you can pass several options to sealed at once by separating them with a space:
Example
html
<wiz-image sealed="placement delete duplicate props padding border size" ></wiz-image>