printing a graphic only

K

Karen Odom

Hello I have a print button on one of my pages with a coupon but it prints
the buttons too. Anybody have a script or something in FP where people can
print just the picture. Thanks!
 
S

Stefan B Rusynko

For IE only you can apply a style
In you HEAD section add
<style type="text/css" MEDIA="print">.noprint {display: none;}</style>

Then put your buttons and other non printing content in a <div>
<div class="noprint">
This will not print
</div>



| Hello I have a print button on one of my pages with a coupon but it prints
| the buttons too. Anybody have a script or something in FP where people can
| print just the picture. Thanks!
|
| --
| karen
|
|
 
K

Karen Odom

I tried entering the info in the Head section and I get HTML on my page. I'm
a rookie so could you please tell exactly where to put it. Also putting
items in /div could you explain that? Thanks
 
S

Stefan B Rusynko

Copy below to NotePad and from there to Html (Code) View in FP (just before </head> tag)

<style type="text/css" MEDIA="print">.noprint {display: none;}</style>

Then do same with the below, but inside your body tags where you current button is

<div class="noprint">

Paste above Before your button

</div>

Paste above After your button





| I tried entering the info in the Head section and I get HTML on my page. I'm
| a rookie so could you please tell exactly where to put it. Also putting
| items in /div could you explain that? Thanks
|
| | > Hello I have a print button on one of my pages with a coupon but it prints
| > the buttons too. Anybody have a script or something in FP where people can
| > print just the picture. Thanks!
| >
| > --
| > karen
| >
| >
|
|
 
Top