In IE 7, though it looks like you've fixed this, it appears that you are using the css for a later version of lightbox. If you are still having that problem, use this css:
http://www.dynamicdrive.com/dynamici...s/lightbox.css
In FF, you have your links here:
Code:
</tr>
<!-- Gallery images-->
<a href="images/woodgrain_door_large.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/two_white_doors.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/4_green_doors.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/garage_with_visi.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/large_white_doors.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/external_fit.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/linked_external.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/resident.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/doubledoor.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/insidecasing.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/usingremote.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/g-garage-large.jpg" rel="lightbox[garagedoors]"></a>
<!--Footer below here-->
</table>
</div>
In an invalid location. FF shifts them to the beginning of the page in the DOM. You may move them here (after the closing </table> tag):
Code:
</tr>
</table>
<!-- Gallery images-->
<a href="images/woodgrain_door_large.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/two_white_doors.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/4_green_doors.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/garage_with_visi.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/large_white_doors.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/external_fit.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/linked_external.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/resident.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/doubledoor.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/insidecasing.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/usingremote.jpg" rel="lightbox[garagedoors]"></a>
<a href="images/g-garage-large.jpg" rel="lightbox[garagedoors]"></a>
<!--Footer below here-->
</div>
Bookmarks