<table style="width: 100%; border: none;"> ...
# ask-stanley-ai
a
<table style="width: 100%; border: none;"> <tr> <td style="width: 20%; text-align: center;"> <span style="font-size: 20pt;">${record@title}</span> </td> </tr> </table> modify this so the text displayed in ${record@title} is centred
c
AI generated answer (using internal Slack threads):
To center the text displayed in
${record@title}
, you can modify the HTML code by adding a CSS property
text-align: center;
to the
td
tag. Here is the modified code:
Copy code
html
<table style="width: 100%; border: none;">
  <tr>
    <td style="width: 20%; text-align: center;">
      <span style="font-size: 20pt; text-align: center;">${record@title}</span>
    </td>
  </tr>
</table>
This will ensure that the text within the
${record@title}
is centered within its containing
td
element. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.817264199
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.807705641
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.792648911
Please provide your feedback on this answer.