You wish to make the border of the tables in your knowledge base thicker. You can use the below solution to change the thickness and color of your table border across your knowledge base.

Solution

1_Screenshot-make_the_table_border_bold_in_knowledge_base.png

  1. Go to Settings -> Knowledge base site -> Custom CSS & JavaScript, and Custom CSS

  2. Paste the below CSS snippet in the window

table td, table th, table tr {
border: 3px solid #000000 !important;
}
  1. Update the desired thickness and color in the snippet. In the provided example, thickness is 3px and color code is 000000

  2. Click Save

Outcome

Before

By default, the table appears as below
2_Screenshot-before_table_border.png

After

After updating the Custom CSS, the table appears as below.

3_Screenshot-after_table_border.png