I am using CKEditor in an application where I want the user to input text. But I dont want its font-size, font-family, and color to change on front end html page. I want the text displayed on html page to always follow this:
font-family: Tahoma;
font-size: 15
color: #555;
Even if the user selects any other font-family, font-size or color while editing or copies the text from any other editor(in different font), in that case as well it must be displayed in accordance with above mentioned properties. This will allow me to have uniform formatting on front end html page.
I have tried alot to fix it but was not able to do so. Can some one help me with this?
Thanks in advance! :)