Need help with PDF in inline frame

G

Guest

I have a calendar I edit weekly that I've saved to a PDF. I've linked the
PDF as an inline frame to my main page so the viewer can see it from the main
page. My problem is it's also showing all the navigation bars as well as the
document. How can I get it to just show the document?
 
R

Rob Giordano \(Crash\)

unless you convert it to a .gif (not so bad - i do it for newsletters)


| Since it's a pdf, it has to open in a pdf reader.
| You can't simply display a pdf in a web page.
|
|
| --
|
| Steve Easton
| Microsoft MVP FrontPage
| FP Cleaner
| http://www.95isalive.com/fixes/fpclean.htm
| Hit Me FP
| http://www.95isalive.com/fixes/HitMeFP.htm
|
| | >I have a calendar I edit weekly that I've saved to a PDF. I've linked
the
| > PDF as an inline frame to my main page so the viewer can see it from the
main
| > page. My problem is it's also showing all the navigation bars as well
as the
| > document. How can I get it to just show the document?
|
|
 
M

Mike Mueller

You may be able to control the pdf toolbars if you use the
<object> tag (along with correct <param>'s) instead of using
an iframe. The code is very similiar to what you are
probable already using


<object type="application/pdf" data="filename.pdf"
width="640" height="480">
<param name="src" value="filename.pdf" />
</object>




message
:I have a calendar I edit weekly that I've saved to a PDF.
I've linked the
: PDF as an inline frame to my main page so the viewer can
see it from the main
: page. My problem is it's also showing all the navigation
bars as well as the
: document. How can I get it to just show the document?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top