winterlove
07-22-2003, 07:05 AM
hi
i was wondering if you can just have frames on one page...but not on the index page...do u get what I mean?
ThXxx
angelivion
07-22-2003, 08:24 AM
do you mean...:
<frameset framespacing="0" border="0" frameborder="0">
<frame name="top" scrolling="no" noresize target="contents" src="index2.html">
</frameset>
<body>
This page uses frames, but your browser doesn't support them.
</body>
That lets the whole page into a frame....
MaGiCSuN
07-22-2003, 11:07 AM
i really don't see the use of using frames when you only want one frame.
but i think you mean if you can also rename it to something else like home.html ? yes you can, it doesn't always have to be index.html. You can also make your enter page index.html and your frame page index2.html :)
Love,
Mirna
bellportal
07-23-2003, 09:37 AM
Have you got an example of what you mean... a link if possible?
winterlove
07-24-2003, 02:28 PM
well see i have a website which isn't viewed in frames but i have a page that i want to put frames on which isn't the index page. i want to make a page with all my friends profiles so their names are on the left and their profile shows up on the right...but i only want frames on this one page. unless i can use a table?
MaGiCSuN
07-24-2003, 02:33 PM
you can use iframes for that too
<table border=0 height="#px" width="#px" cellspacing=0 cellpadding=0><tr><td valign="top">your links in here</td><td valign="top">iframe code in here</td></tr></table>
then your iframe code would be:\
<iframe height="#px" width="#px" frameborder=0 name="FRAMENAME"></iframe>
then target your links like this:
<a href="urlhere.html" target="FRAMENAME">link name</a>
make sure the target name and the name from the iframe match when you change them. Put the iframe code on the place into the table and change the links and that should work out fine. edit the #px to the amount of pixels you want it to be and you are done :)
Love,
Mirna