White or light color text

Discuss, ask and suggest about Usability and Accessability with CMS Made Simple
Locked
User avatar
velden
Dev Team Member
Dev Team Member
Posts: 3479
Joined: Mon Nov 28, 2011 9:29 am
Location: The Netherlands

Re: White or light color text

Post by velden »

Extensions -> MicroTiny WYSIWYG Editor -> Settings (tab) -> Force black text on white background -> check.

Why? Because your css is applied. Most of the times that is what you want so editors get an idea of the effects when they apply specific styles (read explanation at 'CSS Styles' on same settings tab), use paragraphs (e.g. bottom margin), headings, lists etc etc.

You can always overrule a style for MicroTiny by creating extra rules for #tinymce in your stylesheets. Example:

Code: Select all

#tinymce a {
  color : #ff0000 !important;
}
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12708
Joined: Thu Mar 09, 2006 5:32 am
Location: Arizona

Re: White or light color text

Post by Dr.CSS »

You can also fool it by making 2 body {some styles} in the style sheet, tiny will take the first one the web site will take the second one...

body { color: black; background: white}
body {color: white; background: black}
Locked

Return to “[locked] Accessability and Usability”