Hello,everone I'm new here,i have problem viewing my site in internet Explorer browser,it works fine in firefox and opera thou,I saw that i need to parse XML,but how to do that so my XMl site could be viewed properly on IE,thanks in advance!
Did you check with w3.org on XML compliance? They have a validation page over there that should help you out as far as making it cross-browser compliant.
What do you mean XML site ? perhaps you mean XHTML site ? or do you want to display some XML data ? Also what is the problem you have viewing the site in IE ? please provide more info so we can assist.. regards
Hello,please check it out: theimpulsedesign dot com open it with IE to see what I mean,dont know what is the problem.
I am using IE 6, and the site seems to be working just fine... ( very beautiful site by the way ) Now your site does load some problematic XML indeed. (although my IE 6 seems to have no problem with it...) the file http://theimpulsedesign.com/xml/portfolio.xml is not well formed.. the structure is <collection> <gallery title="2D WORKS"> <image ..>..</image> ..... </gallery> <gallery title="3D WORKS"> <image ..>..</image> ..... </gallery> </collection> Code (xml): well.. you are missing the last two tags.. You do not close the second gallery tag and you do not close the collection tag hope this helps
no probs anymore,can you please tell me how to add RSS feed to XML sites is there any tutorial about that you can recommend me,thanks again.
Well.. an RSS is an XML file with a specific structure.. take a look at w3schools ( http://www.w3schools.com/rss/rss_intro.asp ) and http://cyber.law.harvard.edu/rss/rss.html
Thanks for tips,no I have another big problem,I have used html validator firefox addon to check my page,and i fixed the mistakes in code,now the problem is when I add DOCUMENTTYPE code,when i view it in Browser my whole site goes up and the only part which can be seen is the sound bar at the bottom of the site,please tell me what is correct DOCUMENTYPE for my website,that will not make my website look like that,its the problem in doctype when i remove it it looks normal,please help thanks in advance.
Hmm... the most important (a glaring one).. you have the <html> tag at the end of your document instead of the start... and you never close it as well.. another thing (not an error, but redundant) is that you have your analytics code 5 times in there ... once should be enough take care
well a normal document structure is <html> <head> <title>...</title> <!-- other elements that go in the head section here --> </head> <body> <!-- CONTENT OF THE PAGE --> </body> </html> HTML: but you have <!-- YOU ARE MISSING THE STARTING HTML TAG HERE -- YOU SHOULD PUT A <html> HERE --> <head> <title>...</title> <!-- other elements that go in the head section here --> </head> <body> <!-- CONTENT OF THE PAGE --> </body> <html> <!-- YOU HAVE THE START OF THE HTML HERE -- IT SHOULD BE </html> --> HTML: hope this helps a bit
hey,thanks can you please,check it out again,i've fixed more stuff and have just one error for doctype
.. yes but there is no xhtml tag .. put replace xhtml with html and go from there.. also know that some errors that the validator finds can cause everything after that error to seems like an error .. and it will show too many errors when in reality there is only one.. so always try to fix the errors from the top down ..