Hi dpodesta,
Hmm try deleting theses lines.
Code:
<!-- This so you can see the css styles in DW you can delete file once editing Template is complete-->
<link href="css/template_css.css" rel="stylesheet" type="text/css" media="all">
<style type="text/css">
<!--
body {
background-image: url();
}
-->
</style>
this link to a local CSS template_css.css is needed so you can see the style sheet in DW but for live sites you should delete it.
Code:
<link href="css/template_css.css" rel="stylesheet" type="text/css" media="all">
<style type="text/css">
also in your CSS file also you may need to edit some of the background colors of the component sections and type to match your design.
Code:
.blogsection {
height:18px; <-- delete this line
}
.blog_more {
clear:both;
height:18px; <-- delete this line
}
.blog_heading {
height:18px; <-- delete this line
}
Also the HTML CODE
top table frame width is smaller then your image size
Code:
<table width="870" height="532" cellspacing="0" cellpadding="0" border="0" bgcolor="#ffffff" align="center">
Code:
<img src="http://www.hypnosiscds.com.au/templates/jwdigital/images/hypnosiscdslogo.jpg" alt="hynosiscds" height="167" width="906">
Last few things
1. the table that is holding your header. It has the image code in
a <TH> tag for table Header it should be a <TD> tag which is most likely why your getting this issue the flash is fine.
Code:
<th colspan="3" scope="col" height="160" valign="top"><img src="http://www.hypnosiscds.com.au/templates/jwdigital/images/hypnosiscdslogo.jpg" alt="hynosiscds" height="167" width="906"></th>
should be
Code:
<td colspan="3" scope="col" height="160" valign="top"><img src="http://www.hypnosiscds.com.au/templates/jwdigital/images/hypnosiscdslogo.jpg" alt="hynosiscds" height="167" width="906"></td>