You are viewing limited content. For full access, please sign in.

Question

Question

LF Workflow-Html Email-Alignment issue

asked on March 4, 2020

Hi,

I am preparing a workflow for monitoring purpose which requires me to send a email from a SQL database . I have attached the workflow, html code and the email which is coming. I am facing issues in the alignment of the table header and  individual columns and also in bordering across  the individual cell. i require a light blue background in the background and my fields to be bordered across cells and to be in alignment.

email.JPG
Table.JPG
Workflow.JPG
email.JPG (31.51 KB)
Table.JPG (35.87 KB)
Workflow.JPG (23.88 KB)
0 0

Replies

replied on March 4, 2020

This is not related to workflow itself, but you can format each cell alignment using the css style "vertical-align", so for example:

<th style="boder: 1px solid black; vertical-align: top;">

similarly applied on <td> and it takes values of: top, middle, bottom among others. I recommend reading at https://www.w3schools.com/cssref/pr_pos_vertical-align.asp and this https://www.w3schools.com/cssref/pr_background-color.asp for background colors:

<td style="boder: 1px solid black; vertical-align: top; background-color: lightblue;">

More on html table formatting: https://www.w3schools.com/css/css_table.asp

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.