CSS MarkUp problems:
1. HTML 4.01 and XHTML require that the "style" element have a "type" attribute. For example, type="text/css".
2. The "fprolloverstyle" attribute is not valid for the "style" element. The valid attributes for this element are: "dir", "disabled", "lang", "media", "title", "type", "xml:lang", and "xml:space".
HTML/XHTML MarkUp problems:
3. A "value" attribute needs a value.
4. The "table" element may directly contain only the following elements: "tr", "thead", "tbody", "tfoot", "col", "colgroup", "caption". The "input" element is not allowed.
5. I found an "input" tag, but it is not valid due to where it is used. This element may be contained in "body", "caption", "cfform", "form", "td", and "th". This element may not be contained in "button", "table", and "textarea". The tag is currently contained within an element that may not contain it.
6. I found an end tag for "td", but "td" was never opened, has been ended too many times, or cannot have an end tag.
7. I found an end tag for "tr", but "tr" was never opened, has been ended too many times, or cannot have an end tag.
8. I found an end tag for "table", but "table" was never opened, has been ended too many times, or cannot have an end tag.
You might would try fixing all that, and post again if the problems still appear.
|