printing a graphic only

  • Thread starter Thread starter Karen Odom
  • Start date Start date
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!
 
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
|
|
 
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
 
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
| >
| >
|
|
 
Back
Top