Frame help again.

liunx

Guest
Sorry for asking so much but I cant seem to figure it out. Everything I try doesnt work.<br />
<br />
<!-- m --><a class="postlink" href="http://www.members.shaw.ca/countblah69/Van%20Isle%20Style/frame.htm">http://www.members.shaw.ca/countblah69/ ... /frame.htm</a><!-- m --><br />
<br />
So basically when you open up the main page, there is like half an inch between the top, left and right. Also when you click on "About" it opens a new page and doesnt open on the right where I want it to.<br />
<br />
Thanx. You guys rule:)<!--content-->for one thing, yo uneed to read up on how to code in html.<br />
<br />
<html><br />
<table><tr><br />
<br />
that is totally wrong. nd you can't do this<br />
<br />
<html><br />
<br />
<img src=http://www.htmlforums.com/archive/index.php/"banner15.gif"><br />
<br />
</html><br />
<br />
read some basic tutorials first before you start to code. I have a lot of links to some beginner tutorials in html on my site in my sig.<br />
<br />
you have to code correctly before anybody can help.<!--content-->That isnt what Im trying to figure out. I know how to do HTML. Im just playing around with frames. I completely forgot how to do it<!--content-->The empty spaces between the top, left, and right appear because the width and height of the frames are set in % %, but the sizes of images - in pixels. The browser makes alignments. If you resize the browser's window, you see the spaces reduce.<br />
The problem with the link opened in the new window is about the attribute "target" - it is not used properly. You need to put a target frame's NAME there:<br />
<a href=http://www.htmlforums.com/archive/index.php/"about.htm" TARGET="rightframe"><img src="about.gif"></a><!--content-->Ye.... name........<br />
<br />
now:<br />
<a href=http://www.htmlforums.com/archive/index.php/"about.htm" TARGET="right.htm"><br />
change to:<br />
<a href=http://www.htmlforums.com/archive/index.php/"about.htm" TARGET="rightframe"><br />
because:<br />
<frame src=http://www.htmlforums.com/archive/index.php/"right.htm" name="rightframe" /><br />
<br />
:rocker:<br />
<br />
///////edit<br />
<!-- m --><a class="postlink" href="http://www.members.shaw.ca/countblah69/Van%20Isle%20Style/Img_0206.jpg">http://www.members.shaw.ca/countblah69/ ... g_0206.jpg</a><!-- m --><br />
<br />
how...... 1 MB for a small pic???????<!--content-->Originally posted by Count Blah <br />
That isnt what Im trying to figure out. I know how to do HTML. Im just playing around with frames. I completely forgot how to do it <br />
then if you know how, don't cut corners as it doesn't help your question. once you get all the correct html in there you can take those margins away with some css. but with your current coding you can't even use css. you have the frames down, they work, so apparently your question is not framesets but the margins in the frames themselves.<!--content-->Thanx for the help:) I got rid of the space.<br />
Im still having problems with when clicking on a link. It opens on in a new window. How do I get it so that it stays in the same frame?<!--content-->Originally posted by petervazed <br />
Ye.... name........<br />
<br />
now:<br />
<a href=http://www.htmlforums.com/archive/index.php/"about.htm" TARGET="right.htm"><br />
change to:<br />
<a href=http://www.htmlforums.com/archive/index.php/"about.htm" TARGET="rightframe"><br />
because:<br />
<frame src=http://www.htmlforums.com/archive/index.php/"right.htm" name="rightframe" /><br />
<br />
:rocker:<br />
<br />
///////edit<br />
<!-- m --><a class="postlink" href="http://www.members.shaw.ca/countblah69/Van%20Isle%20Style/Img_0206.jpg">http://www.members.shaw.ca/countblah69/ ... g_0206.jpg</a><!-- m --><br />
<br />
how...... 1 MB for a small pic??????? <br />
did you do what petervazed suggested, because the code is still the same.<br />
<br />
also you still have invalid html<br />
<br />
<html><br />
<table><tr><br />
<br />
you cannot do that. you have to have <head> and <body> tags in there.<!--content-->Oops I guess I forgot to put that in:o<!--content-->
 
Back
Top