I want to apply the font element and its properties like color,size,face. How can I modify the tinyMCEConfig.config file to achieve that goal. Especially, I frequently use the statement <p><font ></font></p>. Your feedback is highly appreciated, thanks very much!
To change the appearance of a sentence
Hi Ethan,
The usual way of doing this in Umbraco is to setup a css file under Settings with you color, size and font-family, e.g.:
p {
font-family: verdana;
font-size: 10pt;
color: red;
}
Afterwards you go to Developer -> Datatypes -> Richtext editor
Tick the box in front of your newly created CSS-file under "related stylesheets"
This works because tinyMCE automatically inserts the p-tags around your text.
Best regards,
Hundebol
thanks a million!
No problem.
Remember to set the thread as solved for future reference. :)
Best regards
Hundebol
is working on a reply...