DowsViewer with % not with pixels

You can use CSS in your theme to make it responsive (then the plugin settings will basically set the minimum width). Something like this should do the job...

#docsviewer_viewer,
#docsviewer_viewer iframe {
    width: 100%;
    max-width:100%;
}

For working example, see: http://collegearchive.tri-c.edu/items/show/98

ebellempire do you mind if I ask you about this?

1. How do you avoid the df showing up twice? Is it something like what John mentions here: http://omeka.org/forums/topic/docs-viewer-dont-show-pdf-anywhere-else#post-98429

2. When I played around with the pdf viewer I occasionally got google sign in issues. Do you have a way of avoiding that?

Here's the template I'm using for that page:
https://github.com/CPHDH/tri-c-archive/blob/master/tri-c/items/template-item_default.php

Basically, I used different methods for each file type. So I have a conditional statement for files using the Docs Viewer, then I get the images and streaming files using two different custom functions (defined in my custom.php file).

That's very good of you, thanks for sharing.

Fantastic! Thanks, the docs viewer is displaying perfectly on an iPad now.