I'm struggling to set a default font size for a specific CKEditor Instance. Despite my efforts in researching online, I haven't found a solution that addresses my issue.
On a webpage where users can input website content, there are three Editor instances. My goal is to adjust the font size of the first instance to approximately 20-30px by default.
My attempts to modify the contents.css file located within the CKEDITOR folder and alter the font-size setting have affected all three editor instances instead of just the first one.
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
body
{
/* Font */
font-family: Georgia;
font-size: 12px;
/* Text color */
color: #222;
/* Remove the background color to make it transparent */
background-color: #fff;
}
ol,ul,dl
{
/* IE7: reset rtl list margin. (#7334) */
*margin-right:0px;
/* preserved spaces for rtl list item bullets. (#6249)*/
padding-right:40px;
}
If anyone has successfully resolved this issue before, please share your insights. Your assistance would be greatly appreciated!
Thank you in advance for your help!
mhond