Monday, March 9, 2009

Troubleshoot Error in Blogger HTML Template (2)

In the previous post, I discussed about how to overcome the error in the blogger template with a message like this: Widget IDS should be unique. Now, I will discuss how to fix the error in the Blogger template with a different error message. When you edit the template, maybe you will find error messages like this.

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"/>

Code blue is the end-tags from meta tag. So that the code are closed correctly. In conclusion, remember to provide end-tag at the time to edit the HTML code from the template that we have.

0 comments:

Post a Comment