How do I embed a GAMMA page into my site and make it not display scroll bars etc?

Print article Email to friend
0.00

In WYSIWYG Editor right click on a page and select page html. On the "Between <head> </head>" TAB paste the following code:

<style>

html, body {

width: 100%;

height: 100%;

overflow: hidden; /* Hides the scrollbar */

margin: 0;

}

#embedded-page {

height: 100%;

width: 100%;

border: none; /* Removes the default iframe border */

overflow: hidden; /* Prevents the iframe itself from scrolling */

}

</style>

 

Then paste the following code in the "After <body> tag" tab

Make sure when changing the web page address to show use the full address including https:// and www  e.g. https://www.fardonwebhosting.com

 

Insert the following code into the "After <body>" TAB in you page HTML. replacing "URL_of_page_to_embed" with the actual URL of the page you want to display. 

 <iframe id="embedded-page" src="YOUR WEB PAGE URL HERE" frameborder="0" style="overflow:hidden;height:100%;width:100%"></iframe>

How do I embed a GAMMA page into my site and make it not display scroll bars etc?

In WYSIWYG Editor right click on a page and select page html. On the "Between <head> </head>" TAB paste the following code:

<style>

html, body {

width: 100%;

height: 100%;

overflow: hidden; /* Hides the scrollbar */

margin: 0;

}

#embedded-page {

height: 100%;

width: 100%;

border: none; /* Removes the default iframe border */

overflow: hidden; /* Prevents the iframe itself from scrolling */

}

</style>

 

Then paste the following code in the "After <body> tag" tab

Make sure when changing the web page address to show use the full address including https:// and www  e.g. https://www.fardonwebhosting.com

 

Insert the following code into the "After <body>" TAB in you page HTML. replacing "URL_of_page_to_embed" with the actual URL of the page you want to display. 

 <iframe id="embedded-page" src="YOUR WEB PAGE URL HERE" frameborder="0" style="overflow:hidden;height:100%;width:100%"></iframe>