change font size in textarea by css

Last post 08-26-2010, 8:28 AM by Eric. 1 replies.
Sort Posts: Previous Next
  •  08-26-2010, 4:54 AM 63632

    change font size in textarea by css

    How can I change the default font size in the textarea of cuteeditor?
  •  08-26-2010, 8:28 AM 63636 in reply to 63632

    Re: change font size in textarea by css

    Please use the following code:
    <%
       Dim editor
       Set editor = New CuteEditor
       editor.ID = "Editor1"
       editor.EditorBodyStyle="font-family: Verdana;font-size=25;"   
       If request.QueryString("postback") <> "true" then
        editor.Draw()
       else
        editor.SaveFile("document.html")
        editor.Draw()
       End if             
       ' Request.Form(ID) access from other page
      %>
    Regards,
    Eric
View as RSS news feed in XML