Hi I want to implement the watermark on Print format. How to implement it??
print-format is parent class.
You can use like overriding it with proper CSS selector so it don’t affect other print formats.
.print-format{
background-image: url('URL'));
background-color: color;
}
background-color is for mange watermark effect.
Thanks for reply .I want put the watermark on the center of the Page i would like to know where I need to put this code.
In Print Format DoctType there is Custom CSS field.
if changes not reflect try to use !important;
Use the below code for watermark on every page
<div id="header-html" class="hidden-pdf">
<div
style="
height: 1000px;
width: 100%;
position: fixed;
overflow: auto;
z-index: 9999;
opacity: 0.21;
background: url('img-url')
center center no-repeat;
"
></div>
</div>