Showing posts with label ckeditor. Show all posts
Showing posts with label ckeditor. Show all posts

CK Editor Height and Width

Wednesday, December 21, 2011

You can not specify width and hieght in your input and expect work fine with CKEDITOR.Beacause it wont adjust height and width of CKEDitor

To specify height and width of of a CKEDiTOR

field use this code in your css

.cke_contents{
height: 400px !important;
width: 550px !important;
}
Continue Reading...