1. WebEdit will show styles that are defined as:
.myStyle {
... CSS code...
}
2. Styles defined for IDs will be applied to the proper element but will not be shown in the dropdown:
#myID {
... CSS code...
}
3. Styles defined for tags will be applied to all the appropriate tags and will not be shown in the dropdown:
table {
... CSS code ...
}
To hide a style that is defined as the example in (1) just add 'wep_' to the style name:
.wep_myStyle {
... CSS code ...
}
The elements that call this style will still be rendered with it but the style will not be shown in the dropdown.

The article has been updated successfully.