HTML Help

Started by yes, November 21, 2007 04:31 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

yes

Okay so i need some help, i need to make a full page on a FORUM frames so i can have another website in the middle. The attachment is what i need it to look like. A main problem though is that when i click a link inside the website in the frames it opens up a whole new tab/window/opens in the same tab.

I didnt know where else to post this either.
ggg wow

rtil

all links in the frame should be use the target tag. for example:
<a href="http://www.thebackalleys.com" target="_self">link</a>

the target _self should tell it to open inside the frame. default is usually "_parent", "_blank" opens a new window and "_new" is a new tab/window.

iframes can also use this tag, in case you can\\\'t modify the site inside the frame. never tried it before, though

yes

Quote from: rtilall links in the frame should be use the target tag. for example:
<a href="http://www.thebackalleys.com" target="_self">link</a>

the target _self should tell it to open inside the frame. default is usually "_parent", "_blank" opens a new window and "_new" is a new tab/window.

fuck yous can also use this tag, in case you can't modify the site inside the frame. never tried it before, though
yeah thats the thing im putting the stickam website in this little box. so i cant edit the site.
ggg wow

rtil

try something like this:
<iframe name="iframe" width="640" height="480" src="http://www.link.com" frameborder="3" scrolling="yes">
</iframe>

yes

ggg wow