The following CSS works well on IE and FireFox, but chrome marks it as "Invalid property value" -
TD.desc1_hp { font-family: Arial,Arial (Hebrew),David (Hebrew); }
any hint why?
Thanks,
Atara
Font faces should be enclosed in double quotes. Font faces with parentheses seem to require that. This works:
TD.desc1_hp { font-family: Arial, "Arial (Hebrew)", "David (Hebrew)"; }