Iframe full website without scroll bar
empoweringdigital
Member Posts: 1
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?
0
Answers
-
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*/
0