Проблема с Валидностью сайта

Статус
В этой теме нельзя размещать новые ответы.
И я о том же, мало сейчас валидных сайтов.

Вообще, валидность придумал тот, кто хотел похвастаться какой он умный веб-стандартист :)
 
  • Заблокирован
  • #12
иногда делаеш по стандарту, а результат непредсказуем... и приходится делать нестандартно..
 
Изменил, в итоге ошибок стало немного меньше, но всё равно что-то тут не так
_http://validator.w3.org/check?uri=http%3A%2F%2Fbestgoldportal.ru%2F&charset=(detect+automatically)&doctype=Inline&group=0

Вначале определись под какой доктайп будешь верстать. Сейчас ты поменял на HTML 4.01 Transitional и половина ошибок из-за XHTML тегов. Если хочешь оставить этот доктайп придется менять везде <br /> на <br> и т.д.

Часть ошибок из-за того что валидатор не понимает ссылок с несколькими параметрами. Нужно менять & на &amp;

Потом проверь у всех ли тегов есть закрывающие. Иногда из-за одного незакрытого тега вылазит десяток ошибок. Начнешь править - ошибки будут убывать в геометрической прогрессии :)
 
Оставил HTML 4.01 Transitional, ошибок стало меньше

в основном указывает на ошибки подобного плана

Line 9, Column 35: document type does not allow element "META" here

<meta name="robots" content="all" />

The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).

Видимо нужно просто поубирать лишний слэшек

Но совсем непонимаю такие ошибки:

Line 1254, Column 110: end tag for element "A" which is not open

… src="uploads/banners/224.jpg" /></a>'

The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

If this error occurred in a script section of your document, you should probably read this FAQ entry.

Видимо тут тоже наверно слэш лишний
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху