Cute Editor 6.3. Visual Web Developer 2008 Express. Visual Basic.
I have a Cute Editor in my web page (I am designing my site using Microsoft Visual Web Developer 2008). No matter what I do, when the editor comes up, the area in which I type my text has a grey cross-hatched background (which is what I have defined as the body background for all pages in my stylesheet). The black text is hardly readable against this background. How can I insure that my text area has a white background (or any color for that matter?) Basically, I want to override the "body" background defined in my stylesheet. Other ASP.Net controls don't have this problem. Thanks for the help.
Here is my code:
<CE:Editor ID="Editor1" runat="server" Width="100%" AutoConfigure="Simple"
EditorWysiwygModeCss="~/Extranet/StyleSheets/DefaultStyleSheet.css" ThemeType="Office2007"
ContextMenuMode="Simple">
</CE:Editor>
My stylesheet says:
body
{
background: #B4B4B4 url('../images/body_bg.gif') repeat left top;
font-family: Tahoma, Arial, sans-serif;
font-size: 75%;
color: #333333;
}