|
Posted by Bergamot on 12/04/07 12:59
LayneMitch via WebmasterKB.com wrote:
>
> I believe I've posted a browser compatibility thread on the site
FYI, this is not a site, it's Usenet. You're just posting through some
klunky webified version of it.
> My problem now with my site is that it appears well in IE and nothing in
> Firefox.
>
> href="C:\Documents and Settings\Owner\Desktop\JR Studios Website (Final)\
> default.css"
Besides the fact that your slashes are backwards, you're using an
absolute URI to a file on your local drive. The syntax is different.
Those spaces should be escaped, as well.
href="file:///C:/Documents%20and%20Settings/..."
You won't be able to use a file reference online, of course, so you are
better off using relative URLs instead of file:// URIs. See Adrienne's post.
--
Berg
Navigation:
[Reply to this message]
|