Skip to main content

I am creating my emails in the workflow using html coding. While my data and fields are correctly displaying I am having trouble with the formatting of my table.

 

I want the table to show the gridlines and be left-adjacent. I'm not sure how to add that in/what can be removed from my current code as copied below:

 

Introduction Text
<p>
<head>
<style>
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 1px;
}
th {
    text-align: left;
}
</style>
</head>
<body>
<table style="width:50%">
  <tr>
    <th>Column 1</th>
    <th>Column 2</th>
    <th>Column 3</th>
  </tr>
  <tr>
    <td>hyperlink field<a href= > hyperlink text column 1 </a></td>
    <td> field column 2</td>
    <td> field column 3</td>
  </tr>
</table>
</body>
<p>
 conclusion Text

Hi Contributor


 


I have reviewed your HTML code , I'm not 100% sure regarding this but , please see your exsample below that I have edit


 


Introduction Text
<p>
<head>
<style>
table, th, td {
 border:1px solid black;
}
th {
    text-align: left;
}
</style>
</head>
<body>
<table style="width:50%">
  <tr>
    <th>Column 1</th>
    <th>Column 2</th>
    <th>Column 3</th>
  </tr>
  <tr>
    <td>hyperlink field<a href= > hyperlink text column 1 </a></td>
    <td> field column 2</td>
    <td> field column 3</td>
  </tr>
</table>
</body>
<p>
 conclusion Text


 


If you still experining issue on this I would suggest refering you to our service team for on hands assistants


 


Regards


@EMW

Were you able to resolve this issue? Please share your findings. I am having same issue as well.


Reply