View Full Version : frame borders


BazMoon
03-25-2003, 07:44 PM
all right...I have made it so that none of my frames have borders, but there is still a little white line that separates them. I'm new at this, is there anyway to make that line go away?? Thanks!

dreamspeaker
03-25-2003, 08:16 PM
whats the html u have for it?

Alcy
03-25-2003, 08:58 PM
<frameset cols="*" border=0 frameborder=0 framespacing=0>

BazMoon
03-26-2003, 01:04 AM
I know that code, I don't have any borders anymore, but there is still a little white line that separates my three frames. Is there anyway to get rid of it?? Thank you so much!

Here is the code I use for my page:

<html>
<head>
<title>InuYasha Universe</title>
</head>
<frameset cols="160,*">
<frame src="menu.html" name="leftside" scrolling=no noresize border=0 frameborder=0 framespacing=0>
<frameset rows="80,*">
<frame src="top.html" name="top" scrolling=no noresize border=0 frameborder=0 framespacing=0>
<frame src="content.html" name="rightside" scrolling=yes noresize border=0 frameborder=0 framespacing=0>
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="http://www.angelfire.com/indie/inuyashauniverse/welcome.html">Click Here</a>
</noframes>
</html>

Xiphias
03-26-2003, 03:03 AM
Make sure your images fit the size of the frames you have set :)

BazMoon
03-26-2003, 07:58 PM
yup yup, checked all my images. Its not them, there is just a small tiny white line around the right side of my left frame, the left side of my right frame, and the bottom of my top frame.

starlet
03-26-2003, 11:44 PM
Have you tried adding topmargin=0 leftmargin=0 to the <body> tags of the pages that appear in the frames?

strgrl10
03-27-2003, 11:36 PM
i have that same problem on my iframe on geocities. its so annoying i cant get rid of it!. i want my iframe to blend in with the rest of the page without that white line... any tips?

Embyr
03-28-2003, 04:47 PM
the same thing is happening to me, I was just about to post about it. I did the body topmargin=0 leftmargin=0 thing, and its not helping :(

http://www.maybe-never.com/scoobysnackz/index2.html

Sheila
03-28-2003, 04:56 PM
Originally posted by Embyr
the same thing is happening to me, I was just about to post about it. I did the body topmargin=0 leftmargin=0 thing, and its not helping :(

http://www.maybe-never.com/scoobysnackz/index2.html

You have the no border code in the wrong places. Copy and paste this....

<html>
<LINK REL=stylesheet HREF="scoobycss.css" TYPE="text/css">

<head>
<title>**Scooby Snackz** Version 1</title>
</head>
<frameset rows="90,*" border=0 frameborder=0 framespacing=0>
<frame src="http://www.maybe-never.com/scoobysnackz/top.html" NAME="top">
<frameset cols="160,*" border=0 frameborder=0 framespacing=0>
<frame src="http://www.maybe-never.com/scoobysnackz/menu.html" NAME="left">
<frame src="http://www.maybe-never.com/scoobysnackz/main.html" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="http://www.maybe-never.com/scoobysnackz/main.html">Click Here</a>
</noframes>
</html>

Embyr
03-28-2003, 04:59 PM
oh ^^^^. thanks a lot :)

Sheila
03-28-2003, 05:04 PM
Originally posted by BazMoon
all right...I have made it so that none of my frames have borders, but there is still a little white line that separates them. I'm new at this, is there anyway to make that line go away?? Thanks!

You also have your no borders code in the wrong places. Copy and paste this....


<html>
<head>
<title>InuYasha Universe</title>
</head>
<frameset cols="160,*" border=0 frameborder=0 framespacing=0>
<frame src="menu.html" name="leftside" scrolling=no noresize border=0>
<frameset rows="80,*" border=0 frameborder=0 framespacing=0>
<frame src="top.html" name="top" scrolling=no noresize>
<frame src="content.html" name="rightside" scrolling=yes noresize>
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="http://www.angelfire.com/indie/inuyashauniverse/welcome.html">Click Here</a>
</noframes>
</html>





-------------------



Originally posted by strgrl10
i have that same problem on my iframe on geocities. its so annoying i cant get rid of it!. i want my iframe to blend in with the rest of the page without that white line... any tips?

You have this:
<iframe src="main2.html" name="inlineframe" width="287" height="194" style="border: 0 "></iframe>

Try this:

<iframe src="main2.html" name="inlineframe" width="287" height="194" frameborder="0" border="0"></iframe>

BazMoon
03-29-2003, 06:39 AM
THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU!!!
My page actually looks remotely normal now!! hehe

LaCubanita75
03-29-2003, 07:24 AM
You might also want to try adding quoation marks to the rest of your tags. like instead of having border=0 put border="0". The point is, either you use quotation marks for your tag values, or ya dont. =)

replace:

<frameset rows="90,*" border=0 frameborder=0 framespacing=0>

with:

<frameset rows="90,*" border="0" frameborder="0" framespacing="0">