I added a footer to my Concat function in flow but it is placed just after the text not at the page foot.
here i s the formula
concat('<!DOCTYPE html>
<html>
<meta charset=""utf-8"">
<body>
<div style="margin-bottom:20px"><img src="',variables('logo'),'" alt="Trulli" width="200" height="80"></div>',variables('var_html'),'
<body>
<footer>
<p><div style="margin-bottom:20px"><img src="',variables('Footer'),'"alt="Trulli" width="500" height="50"> <br>
</footer>
</body>
</tbody></html>')
I tried other footer code and the footer appeared at the top over the logo
here is the syntax
concat('<!DOCTYPE html>
<html>
<meta charset=""utf-8"">
<body>
<div style="margin-bottom:20px"><img src="',variables('logo'),'" alt="Trulli" width="100" height="30"></div>',variables('var_html'),'
<body>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="footer">
<div class="footer">
<footer>
<p><img src="',variables('Footer'),'"alt="Trulli" width="500" height="50"></p>
<p><br></p>
</footer>
</div>
</div>
</body>
</tbody></html>')
This gives good result when tested with w3school or other html decoder but in flow works not as expected.
Need you help please .

Report
All responses (
Answers (