frame border?

liunx

Guest
Hey guys. I was wondering if you could help me out. I'm trying to get rid of the frame border that divides the page, see the pic below.<br />
<br />
<!-- m --><a class="postlink" href="http://www.sinfuldeath.com/images/border.jpg">http://www.sinfuldeath.com/images/border.jpg</a><!-- m --> <br />
<br />
here is the html..<br />
<br />
<br />
<HTML> <br />
<style> <br />
BODY { scrollbar-3d-light-color:#ff0000; <br />
scrollbar-arrow-color:#ff0000; <br />
scrollbar-base-color:000000; <br />
scrollbar-dark-shadow-color:#000000; <br />
scrollbar-face-color:#000000; <br />
scrollbar-highlight-color:#999999; <br />
scrollbar-shadow-color:#000000} <br />
</style> <br />
<br />
<br />
<frameset cols=18%,* bordercolor=black> <br />
<frame src=http://www.htmlforums.com/archive/index.php/men1.html name=One <br />
scrolling=auto frameborder=0 marginwidth=0 marginheight=0 noresize=no> <br />
<frame src=http://www.htmlforums.com/archive/index.php/men2.html name=Two <br />
scrolling=auto frameborder=0 marginwidth=0 marginheight=0 noresize=no> <br />
</frameset> <br />
<noframes> <br />
Click <a href=http://www.htmlforums.com/archive/index.php/"index.html"> <here> </a> <br />
</noframes> <br />
</body> <br />
</HTML><br />
<br />
<br />
i figured by setting the frameborder to =0 or to =no it would get rid of them but it didnt.<br />
<br />
thanks in advance for your help.<!--content-->this should do it.<br />
<br />
<br />
<HTML> <br />
<style> <br />
BODY { scrollbar-3d-light-color:#ff0000; <br />
scrollbar-arrow-color:#ff0000; <br />
scrollbar-base-color:000000; <br />
scrollbar-dark-shadow-color:#000000; <br />
scrollbar-face-color:#000000; <br />
scrollbar-highlight-color:#999999; <br />
scrollbar-shadow-color:#000000} <br />
</style> <br />
<br />
<br />
<frameset cols=18%,* frameborder="0" framespacing="0" BORDER="0" bordercolor=black> <br />
<frame src=http://www.htmlforums.com/archive/index.php/men1.html name=One <br />
scrolling=auto marginwidth=0 marginheight=0 noresize=no> <br />
<frame src=http://www.htmlforums.com/archive/index.php/men2.html name=Two <br />
scrolling=auto marginwidth=0 marginheight=0 noresize=no> <br />
</frameset> <br />
<noframes> <br />
Click <a href=http://www.htmlforums.com/archive/index.php/"index.html"> <here> </a> <br />
</noframes> <br />
</body> <br />
</HTML><!--content-->worked great, thanks a bunch!! :)<!--content-->
 
Back
Top