Hi All,
Im trying to preload the source with a template which the users will be able to use as a form. Im setting the background image of the div so that the users cant interact with the image itself. It looks like I want it to but when I go to print I only see the <form/> tag on the print out( background image is not shown.
this is a simplified version of what im trying to do:
<div id="container" style="position:relative;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVgAAABACAIAAADQ/PhVAAABV0lEQVR4nO3ZwXGDMABFQdWlgqiHamiGYn4OMcbGDAEOGWR2byDJNz0jKAFur7xdADcjBIAQAEIAFCEAyp4QHH/1CFydEABCAAgBECEAIgRAhACIEAARAiBCAEQIgAgBECEAIgRAhACIEAARAiBCAEQIgAgBECEAIgRAhACIEAARAiCXDUFXPnXDkV8Y+3pwBdzXRUPwMPa11H48u1QIYJ/mQjD2deUZ4eVu7cfXOY/1Q1fOJgW+X2MhGLp5+8+Da//+i3tCABuaCsGyC0P3ezn29eMVgqMB7NdcCBam0WnoOVsIYL/mQrC9ueejgxDAfk2F4O+vCPP2X0z1jgA2tBWCLI8H8yeByfMp4P2wIASw4dohAP6FEABCAAgBECEAIgRAhACIEAARAiBCAEQIgAgBECEAIgRAhACIEAARAiBCAORECICvJwSAEABCABQhAMpqCIB7+gExa6i9b0dM2wAAAABJRU5ErkJggg==);height:64px;width:350px"> <div id="navi" style="position: absolute; top: 14px; left: 87px; width: 234px; height: 43px;"> <form method="get">test entry</form> </div> </div>
is there a way to get the background image to print? or is there another way to display/print the image without allowing the user to interact with the image itself?
Thanks a lot!
-V