richjtf
Regular Member
- Oct 20, 2015
- 200
- 87
Hi, i need something done that looks like this:

Sometime ago an user here @MrBlue, helped me out with an iframe code:
I used that code to embed a whole site onto a browser page, now however i want to add a little thing, i need to display text below it, one line of text really, i tried removing
from the iframe styling, but it breaks the embed look and it no longer resizes to the whole screen accordingly, i just want for there to be 5% or 10% space left at the bottom of the browser and text to be there..
I'm guessing i'd go with divs but i don't have much idea of how to use them.. Anyway, hope you understood what i need..
Sometime ago an user here @MrBlue, helped me out with an iframe code:
Code:
<iframe src="https://site.com" style="position:fixed; top:0px; left:0px; bottom:0px; right:0px; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
Your browser doesn't support iframes
</iframe>
I used that code to embed a whole site onto a browser page, now however i want to add a little thing, i need to display text below it, one line of text really, i tried removing
Code:
"position:fixed; top:0px; left:0px; bottom:0px; right:0px;"
from the iframe styling, but it breaks the embed look and it no longer resizes to the whole screen accordingly, i just want for there to be 5% or 10% space left at the bottom of the browser and text to be there..
I'm guessing i'd go with divs but i don't have much idea of how to use them.. Anyway, hope you understood what i need..