View Full Version : Website problem
ArBiTaL 24
11-16-03, 03:56 AM
On my website, i'm noticing that when i open a link on my links page (_parent), it opens it in the full IE page, but it leaves the left link bar there as well (link frame).
When i open a link on another page (also _parent), it loads the page fine, without the links bar.
I've had to resort to using _blank for now, can anyone tell me why it's doing this and how i can fix it?
Thanks, A24.
macklin01
11-16-03, 11:47 AM
You mean on that geeksonline site?
At any rate, I'm not quite sure what you're looking for, but if you want a links column, where clicking on a link opens it up in another frame, rather than a separate browser window, you need to do something like this in your index.html file:
<FRAMESET ROWS="125,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0>
<FRAME SRC="TOPbar.html" NAME=TOP SCROLLING=NO>
<FRAMESET COLS="155,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0>
<FRAME SRC="Links.html" NAME=LINKS>
<FRAME SRC="home.html" NAME=CONTENT>
</FRAMESET>
</FRAMESET>
(Here Links.html is the links frame.) So, for any link that you want to open in the main content panel, you'd do this in your link line:
<a href="http://somesite.html" target=CONTENT>blah blah blah</a>
I hope that's what you were looking for. ;) -- Paul
ArBiTaL 24
11-17-03, 02:32 AM
Originally posted by macklin01
You mean on that geeksonline site?
At any rate, I'm not quite sure what you're looking for, but if you want a links column, where clicking on a link opens it up in another frame, rather than a separate browser window, you need to do something like this in your index.html file:
<FRAMESET ROWS="125,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0>
<FRAME SRC="TOPbar.html" NAME=TOP SCROLLING=NO>
<FRAMESET COLS="155,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0>
<FRAME SRC="Links.html" NAME=LINKS>
<FRAME SRC="home.html" NAME=CONTENT>
</FRAMESET>
</FRAMESET>
(Here Links.html is the links frame.) So, for any link that you want to open in the main content panel, you'd do this in your link line:
<a href="http://somesite.html" target=CONTENT>blah blah blah</a>
I hope that's what you were looking for. ;) -- Paul
Not the geeksonline, i mean my personal one.
I don't think that's it, because the code on one page that is the same works fine, and nother doesn't.
Thanks anyway :)
macklin01
11-17-03, 02:36 AM
Hmm, sorry about that. Could you give a link to the site so we can take a look? :) -- Paul
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.