Hi,
I made a site that appears fine in Safari; all the images load. However, when I open it in other browsers (I've tried Camino, Firefox, Opera), 3 of the 4 navigation images on the left don't load, and neither does the header. The code for each image is the same barring any image-specific attributes, so I'm kind of befuddled as to why they aren't loading.
I've run each page through the W3C validator, and they've all passed.
http://p3youandme.bravehost.com/index.htmlCODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>:: Professional Procrastination Productions :: </title>
<link rel="stylesheet" type="text/css" href="CSS/ppp.css" />
</head>
<body style="background-color:#c495eb">
<table class="center" width="700" border="0" cellpadding="2" cellspacing="0">
<tr>
<td colspan="4" style="background-color:#000000">
<p class="centeredImage">
<img src="pics/ppp_header.png" alt="PPP" width="694" height="100" />
<br />
<img src="pics/h_line.png" alt="PPP" width="700" height="2" />
</p>
</td>
</tr>
<tr>
<td class="nav" style="background-color:#000000" valign="top">
<p class="centeredImage"><br />
<a href="index.html">
<img src="pics/button_nav_home.png" alt="HOME" width="110" height="30" /><br />
</a>
<a href="about.html">
<img src="pics/button_nav_about.png" alt="ABOUT" width="110" height="30" /><br />
</a>
<a href="products.html">
<img src="pics/button_nav_products.png" alt="PRODUCTS" width="110" height="30" /><br />
</a>
<a href="contact.html">
<img src="pics/button_nav_contact.png" alt="CONTACT" width="110" height="30" /><br />
</a>
</p>
</td>
<td class="hLine" valign="top" style="background-color:#000000">
<img src="pics/v_line.png" alt="PPP" width="2" height="700" />
</td>
<td class="viewer" valign="top" style="background-color:#000000">
<p>Welcome to <em>Professional Procrastination Productions</em>. Take a look around,
and don't be afraid to contact us if you have any questions.</p>
</td>
<td class="nav" style="background-color:#000000" valign="top">
<p class="centeredText">
</p>
</td>
</tr>
<tr>
<td colspan="4" style="background-color:#553174">
<p class="centeredText">
© 2007 - 2009 Professional Procrastination Productions. All Rights Reserved.<br />
Website created by <a href="http://www.twitter.com/therealmeighan">Meighan</a>.
</p>
</td>
</tr>
</table>
</body>
</html>
Thanks for any help you can give