12 March 2009

Tips to Troubleshoot Error in Blogger HTML Template

Widget IDs should be unique. Now i will discuss error with different message. If you edit HTML, maybe you will found error message.

Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.
XML error message: The element type "font" must be terminated by the matching end-tag "".

How to troubleshoot problem above is easy. The solutions, you must putting end-tag in your code.

Example, you insert meta tag like this.


<meta content="Trick, Tips, And Tutorial Blogger" name="title">

You must insert end-tag of this code like this.

<meta content="Trick, Tips, And Tutorial Blogger" name="title"></meta>

Or like this.

<meta content="Trick, Tips, And Tutorial Blogger" name="title"/>

Don’t forget to insert end-tag every you edit your template.


No comments:

Post a Comment