Forums
This topic is locked
Advanced HTML Editor - all my text is white!!?
Posted 28 Feb 2007 14:57:26
1
has voted
28 Feb 2007 14:57:26 Nathon Jones posted:
Whenever I apply the Advanced HTML Editor to one of my Insert or Update text area fields, when I initially enter text, or try to view existing text (in an Update form) it is white so I can't see it against the white text area form field background!! It is driving me mad!Please can someone help me with this as there is no mention of how to change the default text colour in any of the documentation and I simply can't get a reply from DMX Zone.
Thank you.
Regards
Nath.
Replies
Replied 28 Feb 2007 15:26:59
28 Feb 2007 15:26:59 Nathon Jones replied:
Also, is there a way to set a default font size?
Thanks
Nath.
Thanks
Nath.
Replied 04 Mar 2007 21:14:12
04 Mar 2007 21:14:12 Javier Castro replied:
You can set your default text, size, and color on your CSS.
body{
font-family: Verdana, SanSerif;
font-size: 12px;
color: Black;
}
or assign the default value to any div that you put your records to.
i.e.
#divMyText {
font-family: Verdana, SanSerif;
font-size: 12px;
color: Black;
}
Howver, if you use the HTML Editor and apply some other font properties it will change accordingly.
Hope it helps.
}
body{
font-family: Verdana, SanSerif;
font-size: 12px;
color: Black;
}
or assign the default value to any div that you put your records to.
i.e.
#divMyText {
font-family: Verdana, SanSerif;
font-size: 12px;
color: Black;
}
Howver, if you use the HTML Editor and apply some other font properties it will change accordingly.
Hope it helps.
}