|
Posted by Kim Andrι Akerψ on 05/05/06 19:30
Gregc. wrote:
> G'day
>
> I am designing a frameset whereby I have the navigation page on the
> left and the web page is on the right. Here is my code:
>
> HTML>
> <HEAD>
> <TITLE>TEST</TITLE>
> </HEAD>
> <FRAMESET COLS="200,*" FRAMEBORDER="0">
> <FRAME SRC="nav_.htm" Name="Navigation">
> </FRAMESET>
>
> </HTML>
>
> However, what is happening is that when I add the address of say the
> welcome page into the frameset, it appears on the left and mentioned
> about. Could someone advise me on how I could overcome this.
How are you adding the address of the welcome page into the frameset?
In the section above, it should be like this:
<FRAMESET COLS="200,*" FRAMEBORDER="0">
<FRAME SRC="nav_.htm" Name="Navigation">
<FRAME SRC="welcome.htm" name="main">
</FRAMESET>
Basically, just follow the order you add each frame.
On the other hand, I'd second the others' opinion about losing the
frames altogether and rather design your page to be without them.
http://allmyfaqs.net/faq.pl?Problems_with_using_frames
--
Kim AndrΓ© AkerΓΈ
- kimandre@NOSPAMbetadome.com
(remove NOSPAM to contact me directly)
[Back to original message]
|