Firefox Problem
am 04.12.2007 05:03:06 von u39402
Hello
I believe I've posted a browser compatibility thread on the site and I saw
other similar threads and replies.
My problem now with my site is that it appears well in IE and nothing in
Firefox.
Now, I've already done the validation and it passed (Transitional) the CSS &
HTML validation.
Also, when I first attempted to open the site in Firefox, none of the images
appeared but what did appear was some of the text and spacers for the images.
And they appeared static as if the browser didn't read the stylesheet where
the positioning is specified.
So I shortened the stylesheet address from
href="C:\Documents and Settings\Owner\Desktop\JR Studios Website (Final)\
default.css" to href="default.css"
and the positioning worked...?...
However, there still aren't any images being shown. Could it be a problem
with the address of the tags where the location is listed as "C:\Docs.
and Sets\.......whatever.jpg"...? Or what do you think it could be?
--
Message posted via WebmasterKB.com
http://www.webmasterkb.com/Uwe/Forums.aspx/html-dev/200712/1
Re: Firefox Problem
am 04.12.2007 05:12:04 von rf
"LayneMitch via WebmasterKB.com" wrote in message
news:7c2a4c99696a6@uwe...
> Hello
> href="C:\Documents and Settings\Owner\Desktop\JR Studios Website (Final)\
/, not \
--
Richard.
Re: Firefox Problem
am 04.12.2007 05:22:06 von Blinky the Shark
LayneMitch via WebmasterKB.com wrote:
> Hello
>
> I believe I've posted a browser compatibility thread on the site and I saw
> other similar threads and replies.
What site?
Oh, I see. You're accessing Usenet (which has nothing do do with the web)
via a web site that usurps its groups and messages and presents them with
a clunky interface.
--
Blinky
Killing all posts from Google Groups
The Usenet Improvement Project - http://improve-usenet.org
Re: Firefox Problem
am 04.12.2007 05:49:08 von u39402
rf wrote:
>> Hello
>
>> href="C:\Documents and Settings\Owner\Desktop\JR Studios Website (Final)\
>
>/, not \
>
I just tried that. I changed everything from "\" to "/" and it still didn;t
work.
What I have discovered is that the problem has everthing to do with the .
Everything else works...as I continue to draw up basic examples....
My tables are working, text is working...everything but the images.
--
Message posted via WebmasterKB.com
http://www.webmasterkb.com/Uwe/Forums.aspx/html-dev/200712/1
Re: Firefox Problem
am 04.12.2007 06:13:12 von rf
"LayneMitch via WebmasterKB.com" wrote in message
news:7c2ab38583fec@uwe...
> rf wrote:
>>> Hello
>>
>>> href="C:\Documents and Settings\Owner\Desktop\JR Studios Website
>>> (Final)\
>>
>>/, not \
>>
>
> I just tried that. I changed everything from "\" to "/" and it still
> didn;t
> work.
URL? But then again, with you pointing your image elements to your C drive I
don't expect one too soon :-)
--
Richard.
Re: Firefox Problem
am 04.12.2007 06:21:00 von u39402
rf wrote:
>>>> Hello
>>>
>[quoted text clipped - 6 lines]
>> didn;t
>> work.
>
>URL? But then again, with you pointing your image elements to your C drive I
>don't expect one too soon :-)
>
I'm working on that. I should have a URL tomorrow. If you want you can check
back once I post it. Your suggestion would be much appreciated. Thanks
--
Message posted via http://www.webmasterkb.com
Re: Firefox Problem
am 04.12.2007 07:00:06 von Adrienne Boswell
Gazing into my crystal ball I observed "LayneMitch via WebmasterKB.com"
writing in news:7c2a4c99696a6@uwe:
> However, there still aren't any images being shown. Could it be a
> problem with the address of the tags where the location is
> listed as "C:\Docs. and Sets\.......whatever.jpg"...? Or what do you
> think it could be?
>
If the image is in the same folder as the HTML document, then all that is
needed is src="myimage.jpg". If it's in another folder, say images, then
it could be src="images/myimage.jpg", if the images folder is one below
where the HTML document is.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Re: Firefox Problem
am 04.12.2007 13:59:13 von Bergamot
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
Re: Firefox Problem
am 05.12.2007 03:03:36 von u39402
>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.
Hey,
Thanks a lot. I've solved the problem. I've downloaded a server program and
just used relative URL's instead of absolute as you all suggested. Thanks.
--
Message posted via http://www.webmasterkb.com