
Originally Posted by
Donna Lipply
thanks again, that worked. Another question: I am also getting errors for Leftmargin and Topmargin. Is it something similiar?
Error Line 21 column 35: there is no attribute "LEFTMARGIN".
<body bgcolor="#000045" leftmargin="0" topmargin="0">
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
Error Line 21 column 49: there is no attribute "TOPMARGIN".
<body bgcolor="#000045" leftmargin="0" topmargin="0">
I believe these tages are propriatary or have been depricated for the doc type you indicated. Use
Code:
<body style="background-color:#000045; margin-top:0; margin-left:0;">
Better way is to put them in your style sheet like:
Code:
body {background-color:#000045; margin-top:0; margin-left:0;}