Table cell padding styling added through the TinyMCE editor is not shown in article kb_view DescriptionIf the TinyMCE editor table properties are used to add cell padding in a table, the style is displayed correctly in the editor, but not when viewing the article through kb_view. Steps to Reproduce Navigate to Knowledge > All.Create a new article or open an existing article.On the TinyMCE toolbar, click the table icon, select Insert table. and create a table with two or more columns.Add text to the cells in the table.Click the table icon and select Table properties.Add cell padding of 5.Click OK. Note that the padding is applied to the table correctly.Save the article.Under Related Links, click View Article. Note that the padding is not visible in the kb_view.WorkaroundThis is due to a known error of the third party TinyMCE editor when using outdated table attributes. The "align", "valign", "cellpadding", "cellspacing" and "border" attributes are all deprecated and no longer part of the HTML specifications. Proper markup requires using the CSS equivalents in an inline "style" attribute. Main workaround Find the base system CSS that is overriding the cell padding at table level being applied to the td and th tags (see KB0692082 - How to change the CSS for Knowledge Articles for more information): td, th { padding: 0;}td, th { padding: 0;} Add the required style tag, like for example: td { padding: 20px;} Alternative workaround The cell padding can be manually configured in the article source code. Navigate to Knowledge > Articles > All.Open an article record.Click inside the Text box to set the focus.Click the Source code icon <>.Manually set the table padding (for more information see HTML table cellpadding attribute). Remove the Table properties menu option from the Editor menu bar Remove 'table' from the default value of system property glide.ui.html.editor.v4.toolbar.line1 Example: bold,italic,underline,undo,redo,|,fontselect,fontsizeselect,|,forecolor,backcolor,link,unlink,|,image,media,code,|,alignleft,aligncenter,alignright,|,bullist,numlist,fullscreen Related Problem: PRB657955