Turns out that the board went down for maintenance while I was working on this so, you got a little more thorough treatment than I normally would give in the forums here:
I really don't know where you want the darn thing then. However, the major problem is the width of the table. Just get rid of the width="200" and things will start to get better:
Code:
<div class="footer"><table width="200" border="0">
<tr>
<th align="left" scope="col"><script type="text/javascript" language="JavaScript1.2" src="Menu/EdMenu.js"></script></th>
<th align="right" scope="col">Copyright © Ed Chinn</th>
</tr>
</table>
</div>
Problems arise then with the positioning of the footer. From here on out, these are just suggestions and I feel I should mention that it looks like you've designed this page with only a 1024x768 pixel monitor and a maximized browser window in mind. You have footer styles in two places. Combined, they work out to:
Code:
.footer {
height: 30px;
width: 100%;
position: fixed;
left: 0;
background: #000000;
bottom: 0;
font-size: 50%;
font-style: italic;
text-align: center;
}
The fixed position along with the bottom:0 and left:0 make it be on the bottom and left of the page in FF. In IE, it ignores the left position but, picks up on the text-align:center. You can center this division in the same manner as I explained before and get things to look more or less the same across browsers by dropping the fixed position and location coordinates as well as the text-align:
Code:
.footer {
background: #000000;
height: 30px;
width: 900px;
font-size: 50%;
font-style: italic;
margin:0 auto;
}
This will place it under the image as I think you say you want. But, then your menu still drops up, causing conflicts with the flash which can be fixed following this advice:
Add the following parameter to the OBJECT tag:
<param name="wmode" value="transparent">
Add the following attribute to the EMBED tag:
wmode="transparent"
Example:
Code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','750','height','300','align','left','src','EdChinnWelcome','quality','high','wmode','transparent','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','EdChinnWelcome' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="750" height="300" align="left">
<param name="movie" value="EdChinnWelcome.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="EdChinnWelcome.swf" width="750" height="300" align="left" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>
</object></noscript>
Finally, I would just get rid of this entirely:
Code:
.container {
margin: 0 auto;
max-width: 60em;
padding: 0.5em;
}
Change these as shown:
Code:
<div class="container">
<div align="center">
<table border="0">
give your image a negative right margin:
Code:
<img src="images/Edbrownshirt.jpg" width="250" height="380" align="right" style="margin-right:-14px;">
and change the width of the footer to 930px.
This at least gets you a good look at 1024x786 and above (within limits) and a servicable one at 800x600.
Demo:
http://home.comcast.net/~jscheuer1/side/eds_chin_h.htm
Sorry about the filename.
Bookmarks