Re: default font and default font size

  •  10-10-2007, 6:16 AM

    Re: default font and default font size

    Dear  Adam,

    I've added the EditorWysiwygModeCss property. My CE:Editor looks now like this
    <CE:Editor ID="Editor1" runat="server" AutoParseClasses="True"
    EditorWysiwygModeCss="http://www.ryedb.net/App_Themes/ryedb/ryedb.css"
    CodeViewTemplateItemList="Save,Print,Cut,Copy,Paste,Find,ToFullPage,FromFullPage,SelectAll,SelectNone"
    Width="100%" Height="260px">
    <FrameStyle BackColor="White" BorderColor="#DDDDDD" BorderStyle="Solid" BorderWidth="1px"
    CssClass="CuteEditorFrame" Height="100%" Width="100%" />
    </CE:Editor>
     
    In my css I have for Body:
    body
    {
    /*background-color: #F8F9E2;*/
    font-family: Verdana;
    font-size: 10px;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    background-image: url('background.gif')
    }
     
    When I open a testpage with a CuteEditor I still see "Times New Roman".
     
    When I click in the box I see "Verdana", but the size doesn't change.
    Is there any possibilty to use SkinID in asp.net 2? I've tried this also but it also doesn't work.
     
    On every page I have on top:
    <%@ Page Language="VB" MasterPageFile="~/admin.master" %>
     
    That master page contains already the CSS file and also the Skin works on all the standard textbox, labels, dropdownlists, gridviews ...
     
    any help with this will be appreciated.
     
    Kind regards,
    Bart
View Complete Thread