is it possible to override the table width..
the scenario is this,,
when i copy and paste stuff into the editor, it automatically sets the width to the width of what has been copied... this makes my site look a bit messy, so i would like it to spread tables 100%
the scenario is this,,
when i copy and paste stuff into the editor, it automatically sets the width to the width of what has been copied... this makes my site look a bit messy, so i would like it to spread tables 100%

RE: Over ride table widths?
I'm in no way an expert on javascript but you can try this:
In the folder "fckeditor/editor/dialog" you should find a file called "fck_table.html"
Inside this file you should find a "function Ok()"
There you could exchenge the line:
table.width = document.getElementById('txtWidth').value + ( document.getElementById('selWidthType').value == "percent" ? "%" : "") ;
with:
if ( document.getElementById('txtWidth').value > 450 )
{
table.width = "100%";
}
else
{
table.width = document.getElementById('txtWidth').value + ( document.getElementById('selWidthType').value == "percent" ? "%" : "") ;
}
The value 450 above should be the number your table should NOT exceed, and if it does, it put "100%" as value
Hope this will help, or maybe someone else has any better solution.