INSERTING TABLE IN RICH CONTENT EDITOR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2025 07:42 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2025 02:20 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-04-2025 10:18 AM
@osuntuyik , follow these steps
1. Add table component on the canvas
2. Set the border from styling section
3. cmd + click all table cells and set the border from styling section
This will set the borders for rows and column
Please mark this as Helpful / Accept the Solution if this helps.