Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

firefox won't load images

Status
Not open for further replies.

KryptoS

Programmer
Feb 7, 2001
240
BE
Hello I have several templates working fine with IE. Also on my pc working fine with Firefox (2.0.0.3). But my co-working says it doesn't work with him.

it's this website: [URL unfurl="true"]http://www.istockwholesale.com[/url]

you can have a look at the printscreen he took:

pic 1

this is an example of a template code i use:

Code:
<table border="0" width="100%" cellspacing="0" cellpadding="0" class="infoBoxheading">
  <tr>
    <td height="14" class="infoBoxHeading"><img src="skins/Wim Blue/styleImages/corner_left.gif" border="0" alt="" width="15" height="20"></td>
    <td width="100%" height="14" class="infoBoxHeading">{LANG_CATEGORY_TITLE}</td>
    <td height="14" class="infoBoxHeading" nowrap><img src="skins/Wim Blue/styleImages/corner_right.gif" border="0" alt="" width="15" height="20"></td>
	<td width="7" vAlign="top" background="skins/Wim Blue/styleImages/dropshadow_right.jpg"><img src="skins/Wim Blue/styleImages/dropshadow_topright.jpg" width="7"></td>
  </tr>
</table>


strange thing is that it doesn't load some pictures, and loads some other pictures well.

The One And Only KryptoS
 
- Try getting him to clear his cache. He may have corrupt copies of those images.

- Remove all spaces from your URLs. Spaces, AFAIK, are [!]not[/!] valid characters. You should use "%20" instead of spaces.

Hope this helps,
Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
thanks for the answer. He did clear his cashe so that wouldn't be the problem. The strangest thing is that some pictures are loaded (like corner_left.gif) and some don't (like corner_right.gif).

Someone told me that he had the same problem but that everything worked fine after turning off Greasemonkey. What's greasemonkey? Someone know that this can give problems?

I'll change the spaces with %20... We'll see after that...

thanks again

The One And Only KryptoS
 
What's greasemonkey?

I've no idea either... but a quick search on Google reveals all:

Greasemonkey site said:
Greasemonkey is a Firefox extension that allows you to customize (sic) the way webpages look and function.

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Don't know if this will help, but when I was working with FireFox I found that sometimes my images would not display.

The link to the images was
<img src=".../images/ball.gif" border="o">

I changed the link to
<img src="/images/ball.gif" border="0">

And all was fine.
Notice that I dropped the ... out of the link.

Hope this helps
DWG23
 
OOPS! Just noticed you don't have them in your code.
Sorry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top