On Tue, 17 Aug 2010 05:53:28 +0100, Keith Purtell <[email protected]> wrote:
> Well, the validator was a huge help. Two problems I ran into: > > 1- It did not like the way I imported my style sheet. I thought my tag > <style type="text/css" media="all" @import="style_120704.css";</style> > was correct, but the validator choked on both the @ and the ; > > 2-I tried just pasting in my link into the 'address' field at > http://validator.w3.org/ and clicking on the 'check' button, but the > result was incomprehensible. > > I'll fix the image and 'pindent' problems next, Chris Akins, it's almost > midnight and I'm tired! > > > - Keith Purtell Change your import link to: <style type="text/css"> @import "style_120704.css"; </style> bear in mind that using @import can affect the loading of your page http://www.stevesouders.com/blog/2009/04/09/dont-use-import/ you would maybe be safer going with the 'normal' (?) method in Philips reply. <link rel=" ........ Best wishes Duncan ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
