Problem displaying a canonical uri pdf file in a tabs environment

I have a wiki that displays external pdf files using the canonical uri method. As individual tiddlers, they display just fine. When I try to create a tabs environment to display them, they come through about the size of a large postage stamp.

Is there some easy way to fix this?

Hi Stephen, and welcome!

You just need a stylesheet tiddler like this:

Title [whatever you like]: $:/stylesheet/pdf-transclude-fix
tags: $:/tags/Stylesheet
text:

.tc-tiddler-frame iframe {
width: 100%;
height: 600px;
}
1 Like