An automatic generation of text 'CSS Class Paragraph Default Font Size' when using Firefox

Last post 01-13-2011, 7:56 PM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  01-13-2011, 7:29 PM 65713

    An automatic generation of text 'CSS Class Paragraph Default Font Size' when using Firefox

    This happens only with Firefox.
    I have several editor panels on the one page and they appear to generate continuously the lines
    'CSS Class  Paragraph  Default Font  Size'
    'CSS Class  Paragraph  Default Font  Size'
    'CSS Class  Paragraph  Default Font  Size'
    'CSS Class  Paragraph  Default Font  Size'
    'CSS Class  Paragraph  Default Font  Size'
    There is a constant flick and a new line appears.  This is happening on a PC running XP and Firefox 3.6.13
    It does not happen on my other machine which is Windows 7.
     
    Any idea what it could be.  The lines seems to drop down from the icons of the toolbar as if they are the 'alt' tags of the icon images.
     
     
     
  •  01-13-2011, 7:56 PM 65714 in reply to 65713

    Re: An automatic generation of text 'CSS Class Paragraph Default Font Size' when using Firefox

    Hi geoffo,
     
    If if only happens on one pc, I suggest you try html filter. Please try the example below, it should works on you xp pc.
     
    1. <%@ Page Language="C#" %>  
    2. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>  
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    4.   
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head runat="server">  
    7.     <title>Untitled Page</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.         <div>  
    12.             <CE:Editor id="editor1" runat="server">  
    13.             </CE:Editor>  
    14.         </div>  
    15.     </form>  
    16. </body>  
    17. </html>  
    18.   
    19. <script type="text/javascript">        
    20. function CuteEditor_FilterHTML(editor,code)     
    21. {     
    22.     return code.split("CSS Class  Paragraph  Default Font  Size").join("");  
    23.   
    24. }     
    25. function CuteEditor_FilterCode(editor,code)     
    26. {     
    27.    return code.split("CSS Class  Paragraph  Default Font  Size").join("");    
    28. }     
    29. </script> 
     
    Regards,
     
    ken
View as RSS news feed in XML