Hi! I'm using my aspx web site with ckeditor 4, it is into a table with the width size in percentage to autoadjust to the screen resolution or window size, this works fine on ckeditor 3.x...but in the ckeditor 4 the toolbar's buttons do not take the correct position (showing in vertical). I add the Print screen of the problem.
I hope anybody help me to find a solution
Thanks!
What is your environment
What is your environment (operating system, browser version)?
Can you attach a reduced sample where this irregularity occurs? It would be great if this could be a simple HTML site, but a working aspx page will be OK, too.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
IE9, Chrome LastVersion, Firefox Last version, Windows7
I've tried it on IE9, Chrome not make resize (chrome´s problem) and Firefox works fine...I think the problem is whith HTML5 on IE9...because when I change the !doctype from <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> to <!DOCTYPE HTML> works fine on IE9...
I added a simple html page for your analize...thanks!
Note: delete the .txt extension to .html because I can't upload .html files...
Attachments:
The DOCTYPE that you are
The DOCTYPE that you are using is wrong and causes IE Quirks Mode to kick in... You should use a valid DOCTYPE declaration, like <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>.
See for example this article for a list of correct DOCTYPE declarations: http://www.w3.org/QA/2002/04/valid-dtd-list.html
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Thanks!
Ok thanks! I'll try changing the !doctype...