View Full Version : More Frames Help needed!


chichy
03-30-2003, 02:32 AM
I know how to make the borders of frames different, e.g. make them dashed, dotted or solid, but when I put the code in, it added the dashed border but also kept the normal grey ridged border. My page is here (http://www.chocolate-kitty.dot.nu).Anyone know how to fix this? The code I put is below, I haven't fixed up the no-frames page yet but I will soon, and I added the <HTML><HEAD> part:

<frameset cols=20%,80%>
<frame src="left.html" name="leftside" frameborder=0 framespacing=0 style="border: 1 dotted #0000FF">
<frame src="right.html" name="rightside" frameborder=0 framespacing=0 style="border: 1 dotted #0000FF">
<frame src="top.html" name="top" frameborder=0 framespacing=0
style="border: 1 dotted #0000FF">
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html><body><noembed>
</body>
</html>

Also, the links on my left frame open up in a new window instead of in the right frame. They were working fine before, I didn't change any of the codes. The right frame was called "rightside" and that's what I put on the links, here's a link:

<a href="blinktut.html" target="rightside">Blinkie Tuturial</a>

Please help!

Dude128
03-30-2003, 02:42 AM
try adding border="0" to the <frame> tag

also, your frame code is incorrect- you have three frames but you only specify two widths, 20% and 80%

chichy
03-30-2003, 02:49 AM
I changed the border to 0, but the dashed bit changed aswell. It made the frame invisible...anyone know how to fix the links???

chichy
03-30-2003, 02:52 AM
the code was wrong too...it's the old one I had :P Here's the one currently on my site:

<frameset cols=20%,80%>
<frame src="left.html" name="leftside" frameborder=0 framespacing=0 style="border: 1 dotted #0000FF">
<frame src="right.html" name="rightside" frameborder=0 framespacing=0 style="border: 1 dotted #0000FF">
<frame src="top.html" name="top" frameborder=0 framespacing=0
style="border: 1 dotted #0000FF">
</frameset>
<body>
</body>
<noframes>
<a href="not yet up but soon will be.html">Click Here</a>
</noframes>

Sheila
03-30-2003, 09:30 AM
I don't know what exactly you are trying to fix, but your frame code is wrong.....(Copy and Paste this code)

<HTML><HEAD><TITLE>title</TITLE></HEAD>

<FRAMESET ROWS="100,*">
<FRAME SRC="top.html" NAME="top" frameborder=0 framespacing=0 style="border: 1 dotted #0000FF">
<FRAMESET COLS="158,*">
<FRAME SRC="left.html" NAME="leftside" frameborder=0 framespacing=0 style="border: 1 dotted #0000FF">
<FRAME SRC="right.html" NAME="rightside" frameborder=0 framespacing=0 style="border: 1 dotted #0000FF">
</FRAMESET>
</FRAMESET>

<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>

</HTML>