Hi,
could you share with us some screenshot of the problem? I assume that in a build string you are building some html with inline css styles, where are you outputting that html? in a column, in an email, in a document?
Giacomo
Hi Gelosi,
Thank you for your reply. below is the screenshot's. please find out.
1).below screenshot is giving correct output.
2) i have written below code in build string, and save it variable.
<doctype html>
<html>
<body>
<table border="1" width="100%" >
<tr>
<th style="height:30px;background-color:red;">Topics</th>
<th>Contact Person</th>
<th>Designation</th>
</tr>
<tr>
<td>Santhosh</td>
<td>Santhosh</td>
<td>Dev</td>
</tr>
</body>
</table>
output through Send notification:
here Designation column went up and height of each column is not correct.
could you please find out the solution.
Reagrds,
Santhosh.
Could you inspect the html provided in the email to see if the html is correct?
In addition, in your html code, the first three lines are not required (and the tags aren't closed), could you try to remove them?
- <doctype html>
- <html>
- <body>
Giacomo
Hi,
Not working . i removed html tags also. but it's not working
Thanks,
santhosh.
If you'd open the source code to your mail you'd notice quite a few <br> tags.
in your build-string, strip away all linebreaks and spaces inbetween tags
So your code would become:
<doctype html><html><body><table border="1" width="100%" ><tr><th style="height:30px;background-color:red;">Topics</th><th>Contact Person</th><th>Designation</th></tr><tr><td>Santhosh</td><td>Santhosh</td><td>Dev</td></tr></body></table>
Also not all style formats work in every mail client: CSS Support Guide for Email Clients | Campaign Monitor
hope this helps
Hi Dehaes,
It's working .Thank you .great.
Regards,
Santhosh.
Most welcome.
Could you flag this question to 'answered' please?