PDA

View Full Version : css formatting problem


centenial
06-13-2006, 09:50 PM
Hi,

This page (http://www.epstv.com/newsite/catalog-detail.php?id=3) displays perfectly in every browser (Including Mac Safari) except FireFox - I've been sitting here for the last 2 hours trying to figure out why the box doesn't align right in FireFox like it does in all the other browsers. Does anyone else have any ideas?

_Aerospace_Eng_
06-13-2006, 10:22 PM
The div that you have around that video, that has style="float: right" change it to style="float:right;width:281px;"
and it should move to the right.

<div style="float: right;width:281px;">
<table border="0" width="25%" id="table1" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3" valign="top"><IMG SRC="images/program_catalog_10.jpg" WIDTH=281 HEIGHT=19 ALT=""></td>
</tr>
<tr>

<td valign="top"><IMG SRC="images/program_catalog_12.jpg" WIDTH=19 HEIGHT=196 ALT=""></td>
<td valign="top"><EMBED SRC="Promos/videos/promo16.mov" WIDTH="241" HEIGHT="196" autostart="false"></EMBED></td>
<td valign="top"><IMG SRC="images/program_catalog_14.jpg" WIDTH=21 HEIGHT=196 ALT=""></td>
</tr>
<tr>
<td colspan="3" valign="top">
<IMG SRC="images/program_catalog_15.jpg" WIDTH=281 HEIGHT=21 ALT=""></td>
</tr>
</table>

</div>
You do have some errors in your code. About 73 of them, see them here (http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.epstv.com%2Fnewsite%2Fcatalog-detail.php%3Fid%3D3).

centenial
06-13-2006, 10:28 PM
Thanks a lot for your help! :)