Iframe full website without scroll bar

Options
empoweringdigital
empoweringdigital Member Posts: 1
edited August 2023 in Ask a Question

I've spent the last two days trying to figure out how to put a website in an iframe that takes up the full page aside from the header and footer. It's restricted by the container as far as I can tell, and adds a scroll bar, rather than displaying the full length of the site.


Is there a way to do this?

Answers

  • Aj_Cre8
    Aj_Cre8 Member Posts: 651 MVP
    Options

    1st, why would you want to display a full website that is already built on a duda website?

    Second, you would need to add inline css to your iframe code. Depending on which scrollbar is bothering you.

    style="overflow: hidden;" /*this would hide all scrollbars*/
    style="overflow-x: hidden;" /*this will hide horizontal scrollbars*/
    style="overflow-y: hidden;" /*this will hide vertical scrollbars*/