# PDF on Web Viewer (screen size issue)

**URL:** https://community.thunkable.com/t/pdf-on-web-viewer-screen-size-issue/1245249
**Category:** Questions about Thunkable X
**Created:** [April 26, 2021, 12:16am UTC](https://community.thunkable.com/t/pdf-on-web-viewer-screen-size-issue/1245249 "2021-04-26T00:16:47Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![taiskleinoliveira8y3](https://avatars.discourse-cdn.com/v4/letter/t/c67d28/32.png) [@taiskleinoliveira8y3](https://community.thunkable.com/u/taiskleinoliveira8y3)
#### Post date: [April 26, 2021, 12:16am UTC](https://community.thunkable.com/t/pdf-on-web-viewer-screen-size-issue/1245249/1 "2021-04-26T00:16:47Z")

</div>

Hi!! I am still having issues about the PDF. I put the web viewer component inside of a row (the row is % of the screen and the web viewer is fill container). The web viewer is showing the PDF, but the size isnt right depending on the screen.

Could someone help me?

I published my web app and on the computer it works:

 ![WhatsApp Image 2021-04-25 at 10.31.33](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/d/a/da96fec12ff6d581b4fd05f9bf3df2f38f8e113c.jpeg)

When I open my web app on IOS phone, it explodes from the screen:

 ![WhatsApp Image 2021-04-25 at 10.31.07](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/f/4/f4d9561eaae61e11fdeef8aef656c63281af6658.jpeg)

And when I open my web app on Android phone, it shows this:

 ![WhatsApp Image 2021-04-25 at 10.30.56](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/e/4/e4877c413c8a5c0ad44c550cc0e002c218e9b58e.jpeg)

I want everything like the first picture (one PDF with multiple pages)

Thank you

---

<div class="post-metadata">

### Author: ![risescorporationp](https://avatars.discourse-cdn.com/v4/letter/r/ecd19e/32.png) [@risescorporationp](https://community.thunkable.com/u/risescorporationp)
#### Post date: [July 14, 2024, 3:39am UTC](https://community.thunkable.com/t/pdf-on-web-viewer-screen-size-issue/1245249/2 "2024-07-14T03:39:26Z")

</div>

Update your **iframe**

```auto
<iframe src="{{ $filePath }}#embedded=true&view=FitV" allowfullscreen frameborder="0" scrolling="yes"></iframe>

```

to an **object** :

```auto
<object data="{{ $filePath }}" type="application/pdf" width="100%" height="100%">
    <p>Your browser does not support embedded PDF. <a href="#{{ $filePath }}">Click here to view PDF</a>.</p>
</object>

```

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 1:22pm UTC](https://community.thunkable.com/t/pdf-on-web-viewer-screen-size-issue/1245249/3 "2024-11-08T13:22:53Z")

</div>


