<style> element disappears on Update

Forminator Forms
17 January, 2025 05:27:24
recuniforms
Topics: 4
Messages: 21
I'm add custom HTML with a <style> element, but it disappear when I hit update.

<head>
<style>
* {
box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
padding: 10px;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
</style>
</head>
<body>
<div class="row">
<div class="column">

<p>{select-8}</p>
<p><img src={upload-2} width="250"></p>
</div>
<div class="column">
<p>{select-6}</p>
<p><img src={upload-5} width="250"></p>
</div>
</div>
</body>
17 January, 2025 05:28:10
recuniforms
Topics: 4
Messages: 21
As a result the columns don't float and appear on top of each other. Any help is greatly appreciated!
17 January, 2025 06:06:16
E2Pdf
Support
Topics: 7
Messages: 3377
Hello,

Unfortunately, "float" is not yet supported by E2Pdf. Please use HTML "tables" if you need to build left/right layouts.
We would really appreciate your feedback at WordPress.org!
17 January, 2025 13:04:56
recuniforms
Topics: 4
Messages: 21
Thank you!