Hi Moults,
Did you write this in Office first before moving to Dreamweaver?
There is a HUGE amount of totally redundant code that seems to be specifically for IE that you really dont need.
You could probably halve the size of the page code and achieve a cross browser result.
Now I'm not saying bin this and start again as that would be folly but bear in mind for any future developments that developing in regular HTML would be a big step in the right direction.
Now then - the flag.
You have in your header table the following code:
Code:
<!--[if gte vml 1]><v:shape id="Picture_x0020_3" o:spid="_x0000_s1058"
type="#_x0000_t75" style='position:absolute;margin-left:67.25pt;
margin-top:0;width:107.25pt;height:48.75pt;z-index:2;visibility:visible;
mso-wrap-style:square;mso-wrap-distance-left:0;mso-wrap-distance-top:0;
mso-wrap-distance-right:0;mso-wrap-distance-bottom:0;
mso-position-horizontal:right;mso-position-horizontal-relative:text;
mso-position-vertical:absolute;mso-position-vertical-relative:line'
o:allowoverlap="f">
<v:imagedata src="images/main/animated%2520union%2520javk.gif"/>
<w:wrap type="square" anchory="line"/>
</v:shape><![endif]-->
Replace that with
Code:
<img src="images/main/animated%2520union%2520javk.gif" alt="Union Jack" />
You might have to play with the placing of it as it will render your table cell much bigger than before.
You could wrap it in a DIV eg:
Code:
<div class="unionJack">
<img src="images/main/animated%2520union%2520javk.gif" alt="Union Jack" />
</div>
and in your CSS file add the following:
Code:
.unionJack {
position:absolute;
margin-left:67.25pt;
margin-top:0;
width:107.25pt;
height:48.75pt;
z-index:2;
visibility:visible;
}
See if that helps
Bookmarks