With v 6.3 of the HTMLEditor, I have noticed that when you insert a table from the toolbar that there are horiz and vertical scrollbars as the table is set to 100%. Is there a way to avoid this? I noticed it even happens with the demo.
Thanks.
Let me guess... It works fine in FireFox?
You guys are using IE aren't you... :)
To avoid the scrollbars, you'll want to avoid setting the table's width to 100% (unless it is in another container other than the root editor). This is a function of CSS and XHTML layout engine (the box model). Calling a table 100% wide, makes it take on the size of it's container, but then margins and borders extend beyond the width setting, making scrollbars necessary.
-Tony