|
jaybee -> RE: xhtml validation (4/13/2005 10:50:25)
|
Ahh a nice easy one. You usually get that message if you don't have all your divs in pairs, or, you're trying to put the div in the middle of something you can't put one in. In your case, you've got it outside of the page body which is not allowed. quote:
</div> </body> <div class="text" align="center" > Copyright © 2005 Financial Statements Adjusted All Rights Reserved</div> </html> You need to move the </body> tag after the div and before the </html> tag. That'll fix it. [:D]
|
|
|
|