DJ Will
07-13-2003, 05:25 AM
Hey, wondering how do I get the text to appear in the same box thingee everytime on each page?
sorta like this website (lately.cjb.net)
I don't know what the box thing is or how to do it.
Any ideas?
Thanks :) :D
mystikal06
07-13-2003, 05:45 AM
i'm pretty sure that person is using iframes. they're pretty easy i guess.
megula
07-13-2003, 05:30 PM
IFRAMES are nice and easy way to separate one web page into more than one. They make you page much more organized, and you can have more than one on a single webpage. You will also learn another useful html tip like absolute positioning. Copy and paste the code below into your webpage:
<iframe FRAMEBORDER="0" BORDER=0 width=#
height=# src="PAGEYOUWANTINYOURIFRAME.html"
name=iframe style="position:absolute; left:#; top:#" scrolling=CHOICE style="border: 5 solid #000000"></iframe>
Edit the neccessary. Where it says width:# and height:#, put in your designated width and height number.
Now see where it says left:# and top#. That tells you how far you want your iframe to be from the top of your page and the left side of your page. The larger the number, the farther away it will be. Mess around with the numbers for a while until you have it positioned where you want it. That's called absolute positioning. Also, if you want to, you can change the iframe name, if you don't know what I'm talking about, then don't worry about it.:)
Now you need to target your iframe. Copy this code and put it where you want a link to go. This will target into the iframe when you click on the link.
<a href="YOURLINK.html" target="iframe">TEXT</a>
Edit the neccessary and you're all done!
twix2006
07-13-2003, 05:46 PM
yup..they used iframes..if you don't get what megula says try going here [it was really helpful for me :)]:
http://www.peachie.nu and go to html tutorials and then go to iframes