View Single Post
10-12-2005, 09:20 PM
#5
WiCkEdStYlZ is offline WiCkEdStYlZ
Status: I'm new around here
Join date: Oct 2005
Location: Wales, UK
Expertise:
Software:
 
Posts: 18
iTrader: 0 / 0%
 

WiCkEdStYlZ is on a distinguished road

Send a message via AIM to WiCkEdStYlZ Send a message via MSN to WiCkEdStYlZ Send a message via Yahoo to WiCkEdStYlZ

  Old

maybe? lol yea it is m8 if u look at top of page u will notce the top border as well, only like 3 times as thick... thats the border-top part :P

ok back the the quirie in hand... it's not possible to get the borders outside of the page on any other browser than IE. IE uses MS-HTML and changes just about everything u code lol.

the one way i've figured it to work is this:

HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Document Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
body {
	border-top: 10px solid #2e4988;
	border-bottom: 3px solid #2e4988;
	margin: 0px 0px 0px 0px; 
}
-->
</style>
</head>

<body>
<iframe src="main.html" width="100%" height="100%" frameborder="0" scrolling="yes"></iframe>
</body>
</html>
THEN name the file with all the main page data in it main.html

there ya go its done :P