Two major problems in your source code. First, upper and lower case matter on the web, so:
Code:
akcjaletpicshidef/1.jpg
doesn't exist, though this image file does:
Code:
akcjaletpicshidef/1.JPG
Change it in your source like so:
Code:
<a href="akcjaletpicshidef/1.JPG" rel="lightbox" title="Akcja Letnia">
<img src="akcjaletpics/1.JPG" border="0" width="400" height="268"></a>
Second, with this sort of syntax:
Code:
<!--[if gte vml 1]><v:shape
id="_x0000_s1027" type="#_x0000_t202" alt="" style='position:absolute;left:49.5pt;
top:168.75pt;width:301.5pt;height:213pt;z-index:1' stroked="f">
<v:textbox>
<table cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr>
<td align="center">
<a href="akcjaletpicshidef/1.jpg" rel="lightbox" title="Akcja Letnia">
<img src="akcjaletpics/1.JPG" border="0" width="400" height="268"></a></td>
</tr>
</table>
</v:textbox>
</v:shape><![endif]--><![if !vml]><span style='mso-ignore:vglayout;position:
absolute;z-index:1;left:66px;top:225px;width:406px;height:288px'><img
width=406 height=288 src="akcjaletnia_files/image004.gif" v:shapes="_x0000_s1027"></span><![endif]>
All browsers, except IE see the green part as a comment and will render only the black part. In IE, it is reversed. There is no reason to do this here, the entire section could be just:
Code:
<table cellspacing="0" cellpadding="0" width="100%" height="100%">
<tr>
<td align="center">
<a href="akcjaletpicshidef/1.JPG" rel="lightbox" title="Akcja Letnia">
<img src="akcjaletpics/1.JPG" border="0" width="400" height="268"></a></td>
</tr>
</table>
Bookmarks