Results 1 to 2 of 2

Thread: W3C Validation Help

  1. #1
    Join Date
    Jan 2011
    Posts
    28

    W3C Validation Help

    Hi,
    I am trying to W3C validate my website:

    http://futurepocket.com

    I've fixed most of the errors, but here are some of the remaining errors:

    http://validator.w3.org/check?uri=ht..._Validator/1.1

    Now, the first few warnings/errors have to do with Google Buzz's code, how would I fix that (aka remove the "url" so that it validates properly?).

    The last error, I have absolutely NO idea how to fix. That has to do with the comments, do I have to leave that warning there?

    Any and all help will be appreciated!

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    I think the first error is because of the & before url because it needs a character code & instead of & and it should still work.

    It happens with several characters including = Look at the character codes here
    http://www.tedmontgomery.com/tutorial/HTMLchrc.html

    The last one means you have opened a p tag but not closed it so the div closing tag raises an error because of it. Your code
    Code:
    <p style="text-align: center;">
    	</div>
    should have </p> after center;>
    It means that you have opened a p tag and closed it immediately without any text inside,
    Code:
    <p style="text-align: center;"></p>
    	</div>
    so you delete <p style="text-align: center;"> instead if you have nothing to put in it.
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Similar Threads

  1. onload attribue generating W3C Validation error with XHTML Transitional 1.0 doctype
    By Marventus in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 16 May 2010, 07:51 PM
  2. w3c Validation question...
    By johonbravo in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 05 Mar 2006, 12:16 PM
  3. Other sites than W3C .. ?
    By irka in forum General Questions
    Replies: 1
    Last Post: 24 Jan 2006, 01:00 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •