Sebelumnya Backup terlebih dahulu template kalian, baru mulai untuk modifikasiIni masalah yang terjadi pada blog saya ini setelah saya cek di validator w3, yeah, belum semuanya fix tapi udah mengurangi lah :P.
mungkin saja ada yang sama dalam ke-erorroan, semoga bisa membantu :))
Error: Attribute xmlns:data not allowed here. | |
Error: Attribute xmlns:expr not allowed here. | |
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'> | |
Ganti Menjadi | |
---------------------------------------------------- | |
<html> <!-- Awal Tag --> | |
</HTML> <!-- Akhir Tag --> | |
---------------------------------------------------- | |
============================================================================================================================== | |
Warning: The language attribute on the script element is obsolete. You can safely omit it. | |
<script language='javascript'> | |
]]></script> | |
Ganti Menjadi | |
---------------------------------------------------- | |
<script type="text/javascript"> | |
---------------------------------------------------- | |
============================================================================================================================== | |
Error: Start tag head seen but an element of the same type was already open. | |
<head> | |
Ganti Menjadi | |
---------------------------------------------------- | |
<blockquote> | |
Letakkan kode <b>head</b> persis di bawah kode <b>html</b></blockquote> | |
---------------------------------------------------- | |
============================================================================================================================== | |
Error: The scrolling attribute on the iframe element is obsolete. Use CSS instead. | |
<iframe data-aa='92932' src='https://ad.a-ads.com/92932?size=728x90' scrolling='no' style='width:728px; height:90px; border:0px; padding:0;overflow:hidden' allowtransparency='true' frameborder='0'></iframe> | |
Ganti Menjadi | |
---------------------------------------------------- | |
<iframe id='comment-actions' name='comment-actions' style="border:none;overflow:hidden"/> | |
---------------------------------------------------- | |
Hapus Kode | |
---------------------------------------------------- | |
<b:include name='quickedit'/> | |
<b:include data='post' name='postQuickEdit'/> | |
---------------------------------------------------- | |
dan | |
---------------------------------------------------- | |
<b:includable id='postQuickEdit' var='post'> | |
<b:if cond='data:post.editUrl'> | |
... | |
... | |
</b:if> | |
</b:includable> | |
---------------------------------------------------- | |
============================================================================================================================== | |
Error: Attribute imageanchor not allowed on element a at this point. | |
center;"><a href="http://4.bp.blogspot.com/-pCL3hpZyrls/Vjgl2HSA09I/AAAAAAAABJk/OMW9fhHZVHI/s1600/s02023.gif.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img a | |
Solusinya : | |
---------------------------------------------------- | |
jika ada kode <b>imageanchor="1"</b> di source html hapus aja, Kalau Posting jangan pake <b>Mode Compose</b> gunakan <b>Mode HTML</b>. | |
---------------------------------------------------- | |
============================================================================================================================== | |
The border attribute is obsolete. Consider specifying img { border: 0; } in CSS instead. | |
Cari bagian | |
---------------------------------------------------- | |
<img alt='' border:'0' expr:height='data:thumbnailSize' expr:src='data:post.thumbnail' expr:width='data:thumbnailSize'/> | |
---------------------------------------------------- | |
Ganti menjadi: | |
---------------------------------------------------- | |
<img alt='' style="border:0;" expr:height='data:thumbnailSize' expr:src='data:post.thumbnail' expr:width='data:thumbnailSize'/> | |
---------------------------------------------------- | |
============================================================================================================================== | |
Attribute div not allowed on element div at this point. | |
</div> | |
<div div="ltr"> | |
</div> | |
Hapus kodenya | |
---------------------------------------------------- | |
<div div="ltr"> | |
</div> | |
---------------------------------------------------- | |
============================================================================================================================== | |
Element style is missing required attribute scoped. | |
content'>↩<style>↩#rand | |
]]></script> | |
Tambahkan scoped di akhir tagnya | |
---------------------------------------------------- | |
<style type="text/css" scoped> | |
---------------------------------------------------- |