Table Width Defaults to Current Window Size Instead of 100%
Uppili Srinivasan
When you create a new table, its width doesn't automatically adjust to 100%, which would make the page responsive. Instead, the table width defaults to the size of the browser window. Even if you switch to Code view and manually set the width to 100%, the change won't be saved and the width will revert to that of the browser window. This behavior should be changed and default to the old implementation.
Log In
f
fairley lloyd
Would love to get a fix for this!
J
James Dempsey
Please fix this!
FYI for others affected, this is a CSS workaround:
table {
max-width: 100% !important;
width: unset !important;
}
Add that code to your custom CSS to prevent the tables from displaying over 100% in your KB site. This fix forces tables to display at 100% width in your site - it does not make any changes to your tables, and it does not affect how tables display in the editor.
Mary Theis
This is a big issue for us.
Will the enhancement also fix all the tables that have been changed from percentage to pixels?