Can anyone help me with adding a header to my exported document?
This is the JS code I'm using:
After trying to add a header like this:
<style>
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1;
}
</style>
<div class="exportContent">
<div class="header">
<p>Header Content</p>
</div>
<div class="body">
// Body Content
</div>
</div>
The header only appears on one page and not at the top of every page in the document.
Could someone please assist me in getting it to display at the top of each file?