AudiTT @ MCI
|
| Posted: 02/22/2002, 11:16 AM |
|
Hello All,
I have had this problem for some time, and have been unable to find the answer. So with some testing here is the fix.
Your Body statement in ASP should contain this line.
leftMargin="0" topMargin="0" marginheight="0" marginwidth="0"
Example:
<body BGCOLOR="#FFFFFF" leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">
This will remove the dead space arround the header, and the margin to the left.
Bryan
|
|
|
 |
Andrew B
|
| Posted: 02/22/2002, 4:47 PM |
|
Well, that does work. Here is the CSS way to do it
<style type="text/css">
body {
margin : 0 0 0 0;
padding : 0 0 0 0;
}
</style>
|
|
|
 |
Nicole
|
| Posted: 02/23/2002, 1:50 AM |
|
Hello,
if you need this to be applied for whole site you can edit "pageBODY" item on Site/Style. If you need this to be applied for one page only it can be done via Custom Show Page event if you use Template version and have selected option to generate Style.css file.
|
|
|
 |
|