the images are showing up in safari and firefox but not IE6. I have four images, two of them are showing up in IE6 and two are not. If it helps, they are being toggled with an if statement. suggestions?
Here is an example of the code, there are four of these chunks:
<div class="NavIcons">
<a href="http://www.blah.org/MyQuestions.php?id=<?php echo $prof->id; ?>"
<img src="http://www.blah.org/styles/images/<?php if($ProfileIcon == "questions") { echo "Red"; }else{ echo "Grey"; } ?>QuestionNew.jpg" border="0"/>
</a>
</div>