yamachi
02-01-2003, 03:12 AM
is there a way to get the same address to stay at the top in the address bar no matter where u go? as in lets say you go to i dunno.. um www.link.com but you have a welcome page but you want www.link.com to stay in the address bar even after you click on enter or whatever.... i hope you know what im talking about... right now i have my page set up where it is just one big iframe so the welcome page loads and u can click enter and the address bar will stay the same but it screws up my layouts... help would be much appreciated.
epolady
02-01-2003, 03:20 AM
You'd have to use frames, I'm using that on my site, setting the rows to 100%, *... the only problem is refreshin from the browser, it'll take you back to the main page.
yamachi
02-01-2003, 03:21 AM
hmm.... ok :\ i was hoping there was another way but i guess thats ok.... thanx for replying... im a little rusty usin frames though... *heads off to the main site*
epolady
02-01-2003, 03:28 AM
I can give you the coding, if you'd like. It's basically the same as those redirect (short urls) do.
yamachi
02-01-2003, 03:29 AM
that'd be great! heh lazinesss can get you sooo far in life... ok so it cant but..... i'll finish this later.....
epolady
02-01-2003, 04:04 AM
<frameset rows="100%,*" frameborder="0" border="0" framespacing="0" marginwidth="0" marginheight="0">
<frame name="mainframe" src="your_main_page.html" border="0" frameborder="0" framespacing="0" noresize>
<noframes>
<body>
Your browser doesn't support frames.
</body>
</noframes>
</frameset>
try something like that.