Re: [css-d] Content not allowd in prolog validation error

2005-05-31 Thread David Laakso
On Tue, 31 May 2005 01:14:36 -0400, Prabhath Sirisena [EMAIL PROTECTED] wrote: But I don't understand *why* the stylesheet isn't being seen -- it's a relative path; shouldn't the validator find it? I haven't had this problem before, and I always do my stylesheets the same way (or else,

Re: [css-d] Content not allowd in prolog validation error

2005-05-31 Thread Prabhath Sirisena
What could the reason be for this error? (I/O Error. Stream closed). The site is: http://nidahas.com Try validating the CSS. The content is served as application/xhtml+xml. Thanks, Prabhath http://nidahas.com I/O Error: Stream closed. Looks like the validator has started chocking on CSS.

Re: [css-d] Content not allowd in prolog validation error

2005-05-31 Thread Denise Craven
Quoting Prabhath Sirisena [EMAIL PROTECTED]: What could the reason be for this error? (I/O Error. Stream closed). The site is: http://nidahas.com Try validating the CSS. The content is served as application/xhtml+xml. Thanks, Prabhath http://nidahas.com I/O Error: Stream closed. Looks

[css-d] Content not allowd in prolog validation error

2005-05-30 Thread Linda Dunn
I'm running into a validation issue I haven't seen before. My page (http://www.ncwinnerscircle.com/index.htm) validates as XHTML 1.0 Transitional. However, when I then try to validate its CSS document, I get the following: - Target:

RE: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Peter Williams
-Original Message- From: Linda Dunn However, when I then try to validate its CSS document, I get the following: Target: http://www.ncwinnerscircle.com/ The stylesheet isn't being seen by the validator at the URL you gave it. The stylesheet is at

Re: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Linda Dunn
Peter Williams wrote: The stylesheet isn't being seen by the validator at the URL you gave it. The stylesheet is at http://www.ncwinnerscircle.com/styles/wcstyles.css http://tinyurl.com/92fo6 Now the validator sees the style sheet, and finds an error. But I don't understand *why* the

Re: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Matthew Ohlman
Linda Dunn wrote: I'm running into a validation issue I haven't seen before. My page (http://www.ncwinnerscircle.com/index.htm) validates as XHTML 1.0 Transitional. However, when I then try to validate its CSS document, I get the following: -

Re: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread David Laakso
On Mon, 30 May 2005 23:18:00 -0400, Linda Dunn [EMAIL PROTECTED] wrote: I'm running into a validation issue I haven't seen before. My page (http://www.ncwinnerscircle.com/index.htm) validates as XHTML 1.0 Transitional. However, when I then try to validate its CSS document, I get the

Re: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Linda Dunn
Matthew Ohlman wrote: Try removing this line from your document:html xmlns=http://www.w3.org/1999/xhtml; And then adding this line as the very first one: ?xml version=1.0 encoding=UTF-8? That fixed it, many thanks! linda -- Linda Dunn Purplegenie Design {web+graphics} [EMAIL

RE: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Peter Williams
-Original Message- From: Linda Dunn But I don't understand *why* the stylesheet isn't being seen I wonder if it is because you have commented (html comments) out the style import statement? Take the !-- -- out and try again to test if this is the problem. -- Peter Williams

Re: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Prabhath Sirisena
But I don't understand *why* the stylesheet isn't being seen -- it's a relative path; shouldn't the validator find it? I haven't had this problem before, and I always do my stylesheets the same way (or else, there's something I'm being really obtuse about). I've seen this error recently,

RE: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Peter Williams
Linda Dunn wrote: I'm running into a validation issue I haven't seen before. My page (http://www.ncwinnerscircle.com/index.htm) From: Matthew Ohlman Try removing this line from your document: html xmlns=http://www.w3.org/1999/xhtml; And then adding this line as the very first

Re: [css-d] Content not allowd in prolog validation error

2005-05-30 Thread Linda Dunn
Peter Williams wrote: From: Matthew Ohlman Try removing this line from your document: html xmlns=http://www.w3.org/1999/xhtml; And then adding this line as the very first one: ?xml version=1.0 encoding=UTF-8? :-) You can't remove the HTML element, you need to modify that line,