Botched Table | Inside AI Chatbot Window

Good Day,

When a visitor submits an AI Chatbot inquiry requesting a summary table, the results do not look good. The summary table is botched. Details below.

Questions:

  1. Can this be fixed by Team Eflsight? Meaning, ensure the table displays properly.
  2. Is this an AI Chatbot natural limitation?
  3. When a table exceeds the AI Chatbot’s normal window size, is it possible to implement a code that will expand horizontally the AI Chatbot’s window size?

Perhaps this is a unique situation, but thought I’d present it anyway. Worth looking into?

Thank you!


1 Like

Hi there, @AeroConsultants :waving_hand:

Yep, this is a natural limitation, since the chat window isn’t supposed to be used for tables. However, here is a CSS code from our devs for a better table display :slightly_smiling_face:

table {
  width: 100%;
  word-wrap: break-word;
  table-layout: fixed;
  border: 1px solid black;
  border-collapse: collapse;
  font-size: 14px;
  hyphens: auto; 
}

table th,
table td {
  text-align: center !important;
  border: 1px solid black;
  padding: 4px; 
  hyphens: auto; 
}

1 Like

Hi @Max! Ah, as I suspected. Thank you!

1 Like

It’s my pleasure :wink: