Backgroud colour in html editor


Author Message
Matt

Posted: 10/31/2010
Quote message 

Hi All,

Hope this is the correct place to post this.

How do I remove the background colour in the html editor in DNN?

Cheers,

Matt
 
S. Leupold

Posted: 11/12/2010
Quote message 

in your skin, make sure to apply the background color for #body id, not body tag, because iframe of the richtext editor applies body tag to the content area as well.
 
pat

Posted: 11/25/2010
Quote message 

open the style.css file in the skin folder.

Copy BOTH of the body statements and then paster them below the body statements... then change one of the body p and body tags to #Body and #Body p

in the body section delete everything inside the brackets except the color and backgroundcolour statement. Change the backgroundcolour to #ffffff for a white background.

Save and upload the style sheet. If you amend the skin again you'll have to repeat the process but it does work. Example below.. good luck


body, p
{
margin: 0.5em 0;
font-family: Tahoma, Arial, Helvetica, Sans-Serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-align: justify;
line-height: 100%;
}

body
{

color: #02005D;
background-color: #070562;

}

#Body, p
{
margin: 0.5em 0;
font-family: Tahoma, Arial, Helvetica, Sans-Serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-align: justify;
line-height: 100%;
}

#Body
{
margin: 0 auto;
padding: 0;
color: #02005D;
background-color: #070562;
background-image: url('images/page_t.jpg');
background-repeat: repeat;
background-attachment: scroll;
background-position: top left;
}