I need help for html in blogger template.
I received this message saying that i cant load my template up.
We were unable to save your template
Please correct the error below, and submit your template again.
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 entity name must immediately follow the '%26amp;' in the entity reference.
Can someone please tell me the soloution to this? Thanks.
Help on html on blogger template!?
What code were you trying to paste in the template? If the code contains "%26amp;" characters replace them with "%26amp; a m p ;" without the four spaces inbetween.
Reply:This is a common error. Your tags are most likely written in HTML but you are trying to submit an XML document (as defined in your DOCTYPE declaration). Fortunately, the solution is really simple.
XML uses different closing tags than HTML. Read more about it at http://www.w3schools.com/xml/
In XML, all tags must be closed.
%26lt;p%26gt;text%26lt;/p%26gt; NOT %26lt;p%26gt;text
%26lt;li%26gt;text%26lt;/li%26gt; NOT %26lt;li%26gt;text
All elements that don't have a closing tag still need to be closed using " /%26gt;" (without the quotes).
%26lt;meta comment="blah blah" /%26gt;
NOT %26lt;br%26gt;
Hope that helps.
Lastly, it would be helpful if you submitted the URL to your page or at least included your code in the question. It is easier for us to answer your question when we can analyze the code.
No comments:
Post a Comment