| cant understand path
|
stevelibby

msg:4332012 | 10:39 am on Jun 28, 2011 (gmt 0) | I am absolutely lost, I have redesigned my site yet i am seeing errors in my log files requesting /css/none ? my url is [usedcarshowroom.co.uk ] no doubt i have done something silly here.
|
robzilla

msg:4332020 | 11:14 am on Jun 28, 2011 (gmt 0) | You have several instances of the following code in template.css: | background-image:url('none'); background-repeat:repeat; background-attachment:scroll |
| Since template.css is located in /new_css/ it tries to find the background-image file 'none' in that same folder. If you don't need a background image there, use background-image: none; instead, or remove the background properties altogether. I would also suggest running your code through the W3C HTML validator. You have, for example, two opening <html> tags, and while you're declaring the XHTML doctype, you rarely 'self-close' an element, e.g. you use <meta name="robots" content="index,follow"> instead of <meta name="robots" content="index,follow" />.
|
stevelibby

msg:4332076 | 1:38 pm on Jun 28, 2011 (gmt 0) | Thank you, understanding doc type is not my string point. Need it to be explained in english
|
|
|