Hi there,
If the text overflows the iframe, a vertical scrollbar becomes visible. That's ok.
But at the same time a horizontal scrollbar appears. The text on a line is just a tiny bit too long. About the thickness of the vertical scrollbar.
This problem only exists in de the wysiwyg mode. I tried giving the editor a different width, but the problem persisted.
Does anyone know how to get rid of this problem? Im using FCKeditor with PHP and IE6.
All tips or comments are welcome.
Cheers.
If the text overflows the iframe, a vertical scrollbar becomes visible. That's ok.
But at the same time a horizontal scrollbar appears. The text on a line is just a tiny bit too long. About the thickness of the vertical scrollbar.
This problem only exists in de the wysiwyg mode. I tried giving the editor a different width, but the problem persisted.
Does anyone know how to get rid of this problem? Im using FCKeditor with PHP and IE6.
All tips or comments are welcome.
Cheers.
RE: Unnecessary horiz. scrollbar visible
if you make the change below in fckconfig.js, the problem is solved.
//FCKConfig.DocType = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' ;
// bug in ie that creates horizontal scrolling - mr
FCKConfig.DocType = '' ;
RE: Unnecessary horiz. scrollbar visible
I've made the changes you suggested and it works perfectly! Fantastic!
Thanks again for your help,
Cheers!
RE: Unnecessary horiz. scrollbar visible
ContiW