| re: IE overflow:auto problem
thanks, I've followed your suggestions regarding doctypes but they didn't fix the problem.
I can't figure out how to move the js to a separate file because it also contains php code for a content management program that inserts specific image file name information from an external database.
If I replace the js (not the script but the code that makes the slide show appear in a particular place on the page as in the example below) with enough placeholder text, the scrolling works fine, so it must have something to do with IE and js in a scrolling window.
Here's the code from that section (from the IE source)
[HTML]<div align="center" style="width: 676px; height: 436px; overflow: auto; padding:4px; ">
<table width="95%" border="0" cellpadding="0">
<tr>
<td align="center"><img src="/images/headlines/Connect-With-Us.png" alt="Connect with us!!!" /><br />
<br />
</td>
</tr>
<tr>
<td align="center"><script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder "R")
new fadeshow(fadeimages, 450, 300, 0, 4000, 0)
</script><br /><br /></td>
</tr>
<tr>
<td align="center">
<form method="POST" action="http://12.345.678.910/cgi-bin/easylist/subscribe.cgi">
<span class="body-text-bold">STAY INFORMED</span><br />
<span class="body-text">Enter Your e-mail address below and we'll make sure that you're kept up to date with information about our organization, special events, workshops, and more:</span><br />
<input type="text" name="email" size="29" />
<br />
<input type="radio" value="Y" name="sub_status" checked />
</font><span class="small-text">Subscribe </span>
<input type="radio" value="N" name="sub_status" />
<span class="body-text">Unsubscribe</span><br />
<span class="body-text">
<input type="submit" value="Submit" name="B1" />
<br />
We'll never sell or share our e-mail list </span>
</form></td>
</tr>
</table>
</div>[/HTML]
|