PROBLEM 1.
I have been trying to figure out how to make a coupon image downloadable. I have the image on the page and the html module showed me this as code.
<p> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"><img alt="" src="/portals/0/Home/$3-Watch-Battery-Coupon---FNL.png" /><br />
</p>
So I added this to it:
<A HREF=" window.print()">
<IMG SRC="http://www.xxxxx.com/images/xxxxxxx.jpg" align="left""print_image.gif" BORDER="0"</A>
To Form This:
<p> </p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<A HREF=" window.print()">
<IMG SRC="http://www.xxxxx.com/images/xxxxxxx.jpg" align="left""print_image.gif" BORDER="0"</A>
<p style="text-align: center;"><img alt="" src="/portals/0/Home/$3-Watch-Battery-Coupon---FNL.png" /><br />
</p>
It Prints the entire page which is not what i want. What i want is to make that one, single image printable.
I also have a few forms in the PDF format i want to make downloadable or printable from clicking on a text link.
EXAMPLE:
Text would say '' Print our energy worksheet'' when they click that link it prints the file reference in the code.
Whats the easiest way to do this?
Thanks.