Documentation Index

Fetch the complete documentation index at: https://docs.document360.com/llms.txt

Use this file to discover all available pages before exploring further.

As of 22 Nov 2025, the Markdown editor has been upgraded from v1.4.10 to v3.2.2. The toolbar, layout, icons, and editor structure remain unchanged.

How to make the table border bold in knowledge base

Prev Next

By default, tables on the Knowledge Base site use a thin, light border. If you want thicker or differently coloured borders across all tables in your knowledge base, you can override the default table styling using Custom CSS. The change applies globally to all tables on the site.


When to use custom table borders

  • Improve readability: a thicker border makes cell boundaries clearer, especially in dense data tables.
  • Match your brand: use a border colour that aligns with your knowledge base's visual style.
  • Increase contrast: a darker or more prominent border helps readers distinguish rows and columns at a glance.
NOTE

This CSS change applies to all tables across your Knowledge Base site. It is not possible to target individual tables using this method.


Quick reference

Replace 3px with your desired border thickness and #000000 with your desired colour (hex code or CSS colour name).

table td, table th, table tr {
    border: 3px solid #000000 !important;
}

How to customise table borders

  1. In the Knowledge Base portal, go to Settings > Knowledge base site > Custom CSS & JavaScript.

Knowledge base site settings page showing the Custom CSS and JavaScript option in the left navigation.

  1. Select the CSS tab and paste the following snippet:
table td, table th, table tr {
    border: 3px solid #000000 !important;
}
  1. Update the values to match your requirements:

    • Replace 3px with your desired border thickness.
    • Replace #000000 with your desired border colour (hex code or CSS colour name, for example #e63946 or gray).
  2. Click Save.

Custom CSS editor showing the table border CSS snippet pasted in the CSS tab with the Save button visible.


Outcome

Before

Knowledge Base site table showing the default thin, light border styling.

After

Knowledge Base site table showing a thicker, darker border applied using Custom CSS.