Brett wrote:
> Hi All,
>
> I'm confused about why my caption is not showing up on
the PC side in
> either IE or Firefox, but it does show up on the MAC
side in Firefox,
> Safari and Opera.
>
>
>> <?php do { ?>
>> <div id="imgcont"><img
src="images/product_imgs/thmb/<?php
>> echo $row_chooseProducts['image']; ?>"
>> alt= <?php echo $row_chooseProducts['mod_num'];
?> /><br />
>> <p class="imgcapt"><?php echo
>> $row_chooseProducts['mod_num']; ?> </p>
>> </div>
>> <?php } while ($row_chooseProducts =
>> mysql_fetch_assoc($chooseProducts)); ?>
>
>
> As you can see above, I have a div containing an image
and a caption,
> both drawn from the same table. The entire div "imgcont"
is a repeating
> region. On the MAC the caption shows perfectly below the
image in all
> browsers, on the PC I just get a little line like a
hyphen below the
> image. Why is this happening on the PC?
Use the title tag instead of alt. Alt is only supposed to
used by screen
readers, some browsers got it wrong.
Steve