I have dark pages on my Wordpress site and would like to use white text on them. As a result I cannot see any text in the editor window. Is there a way to set the editor window to something like #444444 so I can see the text?
TIA
Colin
I have dark pages on my Wordpress site and would like to use white text on them. As a result I cannot see any text in the editor window. Is there a way to set the editor window to something like #444444 so I can see the text?
TIA
Colin
i would add a class in the
i would add a class in the config like:
config.bodyClass = 'bodyClass';
Than you can define the class in a stylesheet like this ( loaded with the editor, for example with config.contentsCss = ['mystyle.css'] )
.bodyClass
{
background-color: #444;
}
Thanks
Thanks works perfectly