Hi, Redactor Editor is not using the editor CSS, because is in an Iframe. We can't see table borders, there is an easy fix: In creator.php inside $(document).ready(function() {
You can add var cssLink = document.createElement("link") cssLink.href = "http://your_url_to_custom_editor.css"; cssLink .rel = "stylesheet"; cssLink .type = "text/css"; frames[0].document.body.appendChild(cssLink);