Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the background color of AjaxControlToolkit HtmlEditorExtender control?

I'm using the HtmlEditorExtender control of the AJAX Control Toolkit and I want to change the editor's background color to another color.

How can I do that?

like image 978
Maninder Avatar asked Dec 22 '11 07:12

Maninder


1 Answers

You just have to target the css class that the AJAXControlToolkit uses to style that element. In this case, it is the ajax__html_editor_extender_texteditor class. The following css would make the background of the HTML editor orange:

.ajax__html_editor_extender_texteditor
{
    background-color:#FFA500;
}
like image 157
Josh Darnell Avatar answered Oct 10 '22 09:10

Josh Darnell