I keep getting this error whenever I try to preview templates into the HTML box of the Blogger template:

Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly.

One of the templates I'm trying to use would be like this:
http://www.createblog.com/blogger-layouts/36286-summer/

link|improve this question
Personally I dislike blogger... it seems easy but at the end it turns to be more complicated than others. I have run in similar problems as you... changed to wordpress... – lepe Aug 26 '11 at 4:14
Lepe: I wont agree with you. Blogger is easy to understand. The errors he is getting because of the mistakes he has made in xml template. If xml is not proper, whether its a blogger or another platform. there will be problem. – Sangram Sep 14 '11 at 8:05
feedback

migrated from stackoverflow.com Sep 14 '11 at 12:25

This question came from our site for professional and enthusiast programmers.

closed as off topic by Gareth, Nifle, sblair, Mokubai, random Sep 15 '11 at 2:44

Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.

3 Answers

I have checked the template and this template is full of mistakes.

like

No ending tag, no white space etc I tried correcting the mistakes but It is not even real blogger template.

Even if you correct errors,you will not be able to see desired result.

Check out some another template.

link|improve this answer
feedback

Because no picture.

Change the image link:

link|improve this answer
feedback

Load the source into Notepad++ and enable syntax highlighting for XML. You'll see the problems clearly. Here are some suggestions.

  • The code is riddled with <br> tags. Try replacing them with <br />. Better yet get rid of them; using them for web layouts or to add whitespace between containers is bad practice.

    enter image description here

  • For img tags, try adding a / before the closing >. enter image description here

  • Replace text instances of the ampersand symbol with &amp; or &#38;

    enter image description here
    enter image description here

  • There's an extra closing > in Line 70, before the word "comment."

    enter image description here

link|improve this answer
feedback