Forum Moderators: open
Error Line 355 column 167: required attribute "TYPE" not specified.
...&use_transparent=YES&lang=en"></script></p>
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML
this
">
is highlighted.
Error Line 285 column 87: document type does not allow element "TABLE" here; missing one of "APPLET", "OBJECT", "MAP", "IFRAME", "BUTTON" start-tag.
...spacing="0" width="100%" id="table30">
Here is the code. Its for some needed tables.
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table30">
Its for some needed tables.
Did you mean to say nested tables? ;)
I believe that error is coming from a nesting problem above it. The easiest way to validate your page is to take the errors the validator is presenting in the order they are presented. You'll find that many of the errors are cascading and happen because something above isn't right. Correct the errors from the top of the list and work your way down.
id="table30"> That last part concerns me. Usually table ids are assigned automatically by WYSIWYG Editors. If you are up to table30 on a single page, there could be quite a few issues you will be faced with. Are you nesting? If so, how many tables do you have inside the main table?
This is a series of tables from a catalog page. The above is the first and had an H2 tag in a wrong spot like this.
</table>
<h2>#*$!<h2/>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table30"
This caused the remaining table to show up in error. Man I learn something every step in this process.
One more is giving me problems. An order buttom.
what wrong with this tag?
<img border="0" id="img1" src="photo/button47.gif" height="20" width="100" alt="order" fp-style="fp-btn: Glass Rectangle 1; fp-font-size: 12; fp-img-hover: 0; fp-img-press: 0; fp-preload: 0; fp-bgcolor: #0000FF; fp-transparent: 1" fp-title="order"></a></td>
States there is there is no attribute "FP-STYLE" or "FP-TITLE".
States there is there is no attribute "FP-STYLE" or "FP-TITLE".
Yikes! It looks like you are using FrontPage's button creation feature. Shame on you! ;)
You have to be careful with some of the WYSIWYG features of FrontPage. The code you are referring to is a proprietary format for IE. It is not valid markup and it will need to be removed before you can go any further. If you have quite a few of these features, you're going to run into quite a few errors because of the proprietary FP/IE code.
Yikes! It looks like you are using FrontPage's button creation feature. Shame on you! ;)
Ok, point well taken. I need to go on a button hunt then. The site will have 100s of them, I need something that works well.
As for the H2 tag, that was my own typo of 14 hour looking at this screen yesterday. :)
</table>
<h2>#*$!<h2/>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table30"
should it be more like
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="table30" >
<h2>#*$!<h2/>
</table>
From g1smd
</table>
<h2>#*$!<h2/>
<table>
should be ( with their correction on the h2 closing tag included)
<table>
<2>#*$!</h2>
</table>
So here there are 2 different tags w/3 different typos. Maybe that's all many of your problems are from. ( i.e. Looking at the screen too long. :)