Re: Add DotNetNuke Custom Button

  •  01-28-2008, 12:05 PM

    Re: Add DotNetNuke Custom Button

    bmolzen,
     
    >>Image1.ImageUrl    = "tools.gif"
     
    This ImageUrl is a regular asp.net Image path. You can do:
     
    Image1.ImageUrl    = "~/images/tools.gif"
     
    Image1.ImageUrl    = "/images/tools.gif"
     
    And point it to any folder.
     
    >>I suppose it's theme based?
     
    Yes.
     
    >>and my style was applied.
     
    Can you explain why you need to modfiy the style?
     
  • Changing the default font style in editor

    Please check the Editor.EditorBodyStyle and EditorWysiwygModeCss property. 

    Editor.EditorWysiwygModeCss Property
    Specifies the location of the style sheet that will be used by the editable area. Multiple Style Sheets are supported. Example EditorWysiwygModeCss="example.css,~/portal.css,/default.css"   

    Editor.EditorBodyStyle Property
    The style to be applied to the Editor body.   

    Cute Editor uses default font of the current page.  The default font of web page is Times new roman. If you want to change the default font from Times new roman to Verdana, you can add the following code into the style sheet file:

    body, td { font-family: Verdana; }

    Or you can use Editor.EditorBodyStyle Property:

    Editor1.EditorBodyStyle="font-family: Verdana";
  •  
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread