[REQ] Read Teh Thread. [Iframe]
http://habboart.com/files/layout/lay.../layout_54.zip
Will someone make this layout, so the side navagation, instead of loading the new page, it comes up in the middle of the page, instead of like "http://www.yoursite.com/Secondpage.php" It'll still be "http://www.yoursite.com/index.html"
I have no clue on how to do it, i've googled tutorials, i've tried to learn but overall, i majorly SUCK at this.
If you will be happy to do this for me. Please PM Me..
Thank's in advance, steve..
Re: [REQ] Read Teh Thread. [Iframe]
Using iframes isn't that difficult
Code:
<iframe src="page.hml" width="500" height="500"></iframe>
src="page.html" - The page that needs to be included inside the iframe (page.html is the page to be included)
height="500" - The heigth of the frame. (500 = The amount of pixels)
width="500" - The width of the frame. (500 = The amount of pixels)
Thats all you have to know. to make a iframe
but if you want to remove the scroller / borders
use something like this.
Code:
<iframe src="page.hml" width="500" height="500"></iframe>
scrolling="no" - Removes Scroller
frameborder="0" - Removes Frame (0 = the width of pixels the border should be
Just put something like that in your html (or whatever the file extension is) file
at the right place.
Re: [REQ] Read Teh Thread. [Iframe]
<iframe height="400" frameborder="0" width="100%" scrolling="no" allowtransparency="yes" border="0" src="pages/home.php" id="hccontent" name="hccontent" style="display: block;">Your browser does not support inline frames or is currently configured not to display inline frames.</iframe>
I have came up with this, but i have no clue on where too implement it.
Could someone tell me where x_x
Re: [REQ] Read Teh Thread. [Iframe]
Somewhere between the body tags
depends on where you want it
Code:
<body>
<iframe height="400" frameborder="0" width="100%" scrolling="no" allowtransparency="yes" border="0" src="pages/home.php" id="hccontent" name="hccontent" style="display: block;">Your browser does not support inline frames or is currently configured not to display inline frames.</iframe>
</body>
if you want it all the way at the top place it under the <body> tag
Re: [REQ] Read Teh Thread. [Iframe]
I want it too go into the content box, hmm..
Let me experiment, ill edit my post once i've tested =)
----------------------------------------------------------------
----------------------------EDIT------------------------------
----------------------------------------------------------------
I done it, the page "Home.php" Goes there, but i want every page once clicked on the navigator to go there D: