INSERTING TABLE IN RICH CONTENT EDITOR

osuntuyik
Tera Contributor

TABLE IN RICH CONTENT EDITOR.png

 I added a table in Rich Content Editor upon displaying it on the Employee portal, the line of the rows and columns are not displaying . Please has anyone had this issue before.

 

I will appreciate your help

2 REPLIES 2

Maik Skoddow
Tera Patron
Tera Patron

Hi @osuntuyik 

in case you have in your RTE a button to edit the underlying HTML source code, you could add the respective CSS styles, like

<table style="border-collapse: collapse; width: 100%;">
  <tr>
    <td style="border: 1px solid #ccc;">Cell 1</td>
    <td style="border: 1px solid #ccc;">Cell 2</td>
  </tr>
  <tr>
    <td style="border: 1px solid #ccc;">Cell 3</td>
    <td style="border: 1px solid #ccc;">Cell 4</td>
  </tr>
</table>

Maik

Pooja_Patil
ServiceNow Employee
ServiceNow Employee

@osuntuyik , follow these steps

1. Add table component on the canvas

2. Set the border from styling section

Pooja_Patil_0-1749057330493.png

 

3. cmd + click all table cells and set the border from styling section

Pooja_Patil_1-1749057403838.png

 

This will set the borders for rows and column

Pooja_Patil_2-1749057471719.png

 

Please mark this as Helpful / Accept the Solution if this helps.