Kitty wrote:[color=blue]
> Thanks!
>
> I have found plenty of info on this subject, but never been able to
> find the specific criteria
>
> Here the code for some of the images witch want show. Is there any
> other way to get around this problem?[/color]
The code snippets provided provide no indication about why the images
fail to load. It helps if you provide a URL so we can actually look at
the document to see if they do load or not, and then work from there.
However, there are plenty of other markup problems I can assist you with.
[color=blue]
> <td align="center" colspan="5"><img src="img/top.gif" width="519"
> height="51"></td>[/color]
The align attribute is deprecated in favour of CSS. However, its
presence, the large colspan value combined with the fact that this cell
contains an image named "top.gif" without any alternate text, suggests
that you are, more than likely, using tables for layout. Stop it! Mark
up your document semantically, using tables for tabular data only and
use CSS for style and layout.
The image also requires alternate text to be specified. Given that it's
a layout table, and it's named top.gif, it would appear that it's
nothing more than presentation. In which case, you should set the alt
attribute to alt="". If it is more than just presentation, the alt text
should serve the same purpose as the image for user agents where images
are unavailable.
[color=blue]
> <p class="text12"><img src="img/paint.jpg" width="260" height="131"
> border="1">[/color]
This image (and any others in your document) also needs alt text to be
specified.
The border attribute is deprecated also, it should be specified using CSS.
The class attribute on the p element seems odd. It doesn't appear to
have any useful semantic meaning, and while it's not actually specifying
exact presentation, the need for numbered classes is rare. Although, it
is difficult to tell for sure, but you should evaluate whether it is
simply being used as a presentational hook, or whether it actually has
some semantic relevance.
--
Lachlan Hunt
http://lachy.id.au/ http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox