View Full Version : Help with frames!!! ((and Iframes))


foreveronshuu
05-13-2003, 04:25 PM
Okie first of im 11 and have been studying HTML
since i was 8.. 4 yrs now..
(AND LISSA YOU GUYS HELPED ME ALL THE WAY! ^^))
I wanted to know how some ppl
align there Iframes in the middle...
(without using frames.. like
umm having a one enter page and just entering
the iframe code.. so theres just to pages
the main one which links to the Iframe
and the iframe... ive seen ppl center the iframe
do you use some kind of <p align="center"></p>
tag?))

Also ive been trying to make a
5 set frame as in
A frame on the top
and on the bottom a frame in the middle
and a frame on the left and right..
but i dont know the HTML
code for this!!!

pb&j
05-13-2003, 11:15 PM
for your first question, some people use "css absolute positioning" to place an object such as an iframe to a specific spot on the page. perhaps do a search in the css forum space for further ideas on that.

for your second question, there are a couple of ways to interpret it...

<html>
<frameset rows="100,*,100">
<frame name="top" src="toppage.html">
<frameset cols="100,*,100">
<frame name="left" src="leftpage.html">
<frame name="middle" src="middlepage.html">
<frame name="right" src="rightpage.html">
</frameset>
<frame name="bottom" src="bottompage.html">
</frameset>
</html>

or it could be like this...

<html>
<frameset cols="100,*,100">
<frame name="left" src="leftpage.html">
<frameset rows="100,*,100">
<frame name="top" src="toppage.html">
<frame name="middle" src="middlepage.html">
<frame name="bottom" src="bottompage.html">
</frameset>
<frame name="right" src="rightpage.html">
</frameset>
</html>

give those a shot.

foreveronshuu
05-14-2003, 12:30 AM
THANKS I'LL TRY THAT!!

---

THANKS LOTS!
IT WORKED!!!
^^

Within 5 minutes of your original post, you can use the edit button instead of replying :)

-Moderator