Currently, tables in the content area look pretty atrocious. The following rules should be added to the theme to fix this display issue (the second rule accounts for WYSIWYG editors using tables to lay out the 'HTML block format' menu display... like TinyMCE):

#content-area table {
width: 100%;
overflow: scroll;
}

#content-area .body-field-wrapper table {
overflow: visible;
width: auto;
}

Comments

geerlingguy’s picture

...and also in comment areas.

#content-area table {
  width: 100%;
  overflow: scroll;
}

#content-area .body-field-wrapper table {
  overflow: visible;
  width: auto;
}

#content-area .edit-comment-wrapper table {
  overflow: visible;
  width: auto;
}
geerlingguy’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.