• Resolved 3cstudio

    (@3cstudio)


    @wppdfsupport, this screenshot details what I’m up against. If there is only 1 Widget in the sidebar, then the content of the PDF based Post is “beneath” the footer. Is there a way to force the PDF viewer to take up its allotted vertical space and thereby push the footer down accordingly? Thanks for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @3cstudio,

    I’m not sure what theme you are using but if it includes an option for “Smooth Scrolling”, try disabling that as it might be interfering with the correct calculation of the height of the embedded PDF.

    Another alternative is with a bit of CSS. This should go into your Appearance > Customize > Additional CSS field or a custom CSS field if your theme provides that:

    /* FIX FOR PDF EMBEDDER HEIGHT */
    
    .custom-fixed-height {
        min-height: 800px !important;
    }
    
    div.attachment .post-content {
        min-height: 800px !important;
    }

    Assign a custom class to the parent container surrounding the PDF Embedder and force the page height to match. Hopefully this will give you some insight and a solution for your own page layout.

    Thread Starter 3cstudio

    (@3cstudio)

    Thank you very much — I’ll give these suggestions a try, and report back on the results.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Short pages won’t show entire PDF’ is closed to new replies.