You have this code in your webpage:
Code:
<div class="Table_01">
<div class="bfheader2m-01_">
<img id="bfheader2m_01" src="images/bfheader2m_01.gif" width="260" height="314" alt="" />
</div>
<div class="bfheader2m-02_">
<img id="bfheader2m_02" src="images/bfheader2m_02.gif" width="185" height="314" alt="" />
</div>
<div class="bfheader2m-03_">
<img id="bfheader2m_03" src="images/bfheader2m_03.gif" width="158" height="314" alt="" />
</div>
<div class="bfheader2m-04_">
<img id="bfheader2m_04" src="images/bfheader2m_04.gif" width="204" height="314" alt="" />
</div>
<div class="bfheader2m-05_">
<img id="bfheader2m_05" src="images/bfheader2m_05.gif" width="194" height="314" alt="" />
</div>
<div class="bfheader2m-06_">
<img id="bfheader2m_06" src="images/bfheader2m_06.gif" width="1001" height="117" alt="" />
</div>
</div>
Replace that with this:
Code:
<div class="Table_01">
<img id="bfheader2m_01" src="images/bfheader2m_01.gif" width="260" height="314" alt="" /><img id="bfheader2m_02" src="images/bfheader2m_02.gif" width="185" height="314" alt="" /><img id="bfheader2m_03" src="images/bfheader2m_03.gif" width="158" height="314" alt="" /><img id="bfheader2m_04" src="images/bfheader2m_04.gif" width="204" height="314" alt="" /><img id="bfheader2m_05" src="images/bfheader2m_05.gif" width="194" height="314" alt="" /></div>
<div class="bfheader2m-06_"><img id="bfheader2m_06" src="images/bfheader2m_06.gif" width="1001" height="117" alt="" /></div>
May I ask why you're breaking up the image in the first place and why you're doing it like this:
|-------| |-------| |-------| |-------| |-------|
| | | | | | | | | |
| | | | | | | | | |
|-------| |-------| |-------| |-------| |-------|
instead of like this:
|----------------------------------------------|
| |
|----------------------------------------------|
|----------------------------------------------|
| |
|----------------------------------------------|
|----------------------------------------------|
| |
|----------------------------------------------|
|----------------------------------------------|
| |
|----------------------------------------------|
It's just typically done the second way, especially since if the user resizes their browser to a width shorter than the width of the top image, it would end up causing a similar problem as now (try my code and then resize your browser to a smaller width to see what I mean). You could fix that resize problem by using a table and putting every image in a new <td>, but the best way would be to just combine the image and export as one large header.
Rick