Hi, I'm having some problems when using 'display: none;' on a span element in FCKEditor. If anyone can help I'd be grateful.
In Firefox, with the styles defined in the fckeditor.css, when switching from Source view back to the WYSIWG view the elements that have 'display:none' specified are visible for about 2 seconds before they disappear. When the style is defined as a tag attribute (style="..") there is no delay. I suppose this is just a processing delay in dynamically applying the style sheet.
In IE the 'display:none' elements are permanently visible although other styles applied to the same elements do work. This is true no matter where you define the style, in the fckeditor.css or in the tag attribute.
In Firefox, with the styles defined in the fckeditor.css, when switching from Source view back to the WYSIWG view the elements that have 'display:none' specified are visible for about 2 seconds before they disappear. When the style is defined as a tag attribute (style="..") there is no delay. I suppose this is just a processing delay in dynamically applying the style sheet.
In IE the 'display:none' elements are permanently visible although other styles applied to the same elements do work. This is true no matter where you define the style, in the fckeditor.css or in the tag attribute.
cckfHidden { display: none; } .. <span class="cckfHidden" style="display: none; color: purple">Insert the popup text/HTML here..</span></p>
<span style="display: none; color: purple">Insert the popup text/HTML here..</span></p>
Re: behavior of display: none